Question

How to install a specific Python version on Ubuntu?

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!


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Bobby Iliev
Site Moderator
Site Moderator badge
March 1, 2021
Accepted Answer

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:

  1. sudo apt-get install libssl-dev openssl make gcc

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:

  1. cd /opt
  2. wget https://www.python.org/ftp/python/3.9.2/Python-3.9.2.tgz

Extract the archive:

  1. tar xzvf Python-3.9.2.tgz

Then cd into the directory:

  1. cd Python-3.9.2

And finally, compile the new version:

  1. ./configure
  2. make
  3. make install

Finally you can create a symlink for that specific Python version so that you could use the binary from anywhere:

  1. sudo ln -fs /opt/Python-3.9.2/Python /usr/bin/python3.9

Then you could check if the python3.9 version is available:

  1. python3.9 --version

Hope that this helps. Regards, Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.