How to Compile & Install Python 3.10.0 from Source in Ubuntu 21.04, 21.10

This simple tutorial shows how to compile and install Python 3.10.0 or other certain Python version in Ubuntu.

For Ubuntu 18.04 and Ubuntu 20.04 LTS, there’s well trusted “deadsnakes” team PPA that maintains all the Python packages. For non-LTS releases, e.g., Ubuntu 21.04 and Ubuntu 21.10, you may build the programming language package manually from the source tarball.

NOTE: Ubuntu 21.04 has Python 3.10 beta1 in universe repository, remove it if installed before doing the steps below. For Ubuntu 21.10, Python 3.10 will be soon made into the universe repository, so you may skip or install a certain version (e.g., 3.8 or 3.7) via this tutorial.

1. Preparation:

Before getting started, you need to install some essential packages for building the computer language package.

Open terminal either by pressing Ctrl+Alt+T on keyboard or by searching from start menu. When it opens, run the command below to install the dependencies:

sudo apt install wget build-essential libreadline-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev

2. Download Python Tarball:

Next, download the source package by running the wget command in terminal:

wget -c https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tar.xz

For other Python version, go and download via web browser in this page.

And uncompress the tarball either by right-click and selecting ‘Extract Here‘ in file manager, or by running command in terminal:

tar -Jxf Python-3.10.0.tar.xz

3. Configure the source:

After extracted the source, go to new generated folder via command:

cd Python-3.10.0/

The command varies depends on which Python version you downloaded. You may right-click on the folder and choose ‘Open in Terminal‘ instead of running cd command.

When you’re in source directory, run command to configure the source with expensive, stable optimizations (PGO, etc.):

./configure --enable-optimizations

4. Build and install Python:

Finally compile and install it into “/usr/local/bin”:

sudo make altinstall -j4

Here -j4 will start 4 threads to speed up the job. Depends on your CPU, you may increase the number or just skip it.

5. Make Python 3.10 default

After installation, verify via python3.10 -V command. You may set it as default by creating symbolic links to /usr/bin/python:

sudo update-alternatives --install /usr/bin/python python /usr/local/bin/python3.10 1
sudo update-alternatives --install /usr/bin/pip pip /usr/local/bin/pip3.10 1

It’s possible to set Python3.10 as Python3. However, this may cause issues since it points to python3.9 by default.