Hello folks and thanks for any help,
I needed to install Python 3.6 to fiddle with a script from a few years ago and the only way I found was through make files (compiler).
Steps are explained here : https://stackoverflow.com/questions/72102435/how-to-install-python3-6-on-ubuntu-22-04
last step :
cd Python-3.6.15
./configure --enable-optimizations -with-lto --with-pydebug
make -j 8 # adjust for number of your CPU cores
sudo make altinstall
Unfortunately, not being familiar with python installation, I thought it would automatically be installed in the default location such as usr/bin/Python3-6
But it got installed in my project folder.
How can I move this Python3.6 folder to the default location without having this version break down ?
I still have the Python-3.6.15.tgz file if it is simpler to reinstall it in the default location.
Thanks for any help.