In some cases, you might need to install a very specific Python version on your Ubuntu server which might be different from the one that comes from the default apt repositories.
Here is how you could do that!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
Thank you for reporting this.
This is going to be beyond the scope of the tutorial. However here is how you could install a specific version if needed:
First, install the required libraries:
Then choose the specific Python from here:
https://www.python.org/ftp/python/
After that go to the
/opt
directory and download the archive of the specific version:Extract the archive:
Then
cd
into the directory:And finally, compile the new version:
Finally you can create a symlink for that specific Python version so that you could use the binary from anywhere:
Then you could check if the
python3.9
version is available:Hope that this helps. Regards, Bobby