0 42 minutes read
| Published on: May 12, 2024 | Last updated on: May 20, 2024

Python 3.10 is the latest version of the popular programming language, packed with new features, security patches, and performance improvements. One notable addition is the support for parenthesized context managers, allowing for better readability and continuation across multiple lines. In this blog post, we’ll walk you through the process to install Python 3.10 from source on Fedora and CentOS/RHEL 8 systems because for some reason no rpms are available for this version.

Prerequisites

Before we begin, ensure that your system has the following:

  • A pre-installed GCC compiler
  • SSH or shell access to your server

To install the necessary packages, run the following command:

Bash
sudo dnf install wget yum-utils make gcc openssl-devel bzip2-devel libffi-devel zlib-devel

Step 1: Download Python 3.10 Source Code

Visit the official Python download site at https://www.python.org/ftp/python to get the latest version of Python 3.10. Alternatively, you can use the command line to download the source code directly:

Bash
wget https://www.python.org/ftp/python/3.10.14/Python-3.10.14.tgz

Once the download is complete, extract the archive file:

Bash
tar xzf Python-3.10.14.tgz

This will create a directory named Python-3.10.14 containing the source files.

Step 2: install Python 3.10 on RHEL

Navigate to the extracted directory:

Bash
cd Python-3.10.14

Prepare the source code with the required values to install python 3.10 before compiling:

Bash
sudo ./configure --with-system-ffi --with-computed-gotos --enable-loadable-sqlite-extensions

Next, compile the source code using make. Use all available CPU cores for optimal performance but it may still take a little while:

Bash
#this command may fail - sudo make -j ${nproc}
sudo make altinstall

make altinstall prevents replacing the default Python binary at /usr/bin/python.

You should see something along the lines of the picture below:

install python 3.10 on rhel command line

After installation, remove the downloaded archive to free up space:

Bash
sudo rm Python-3.10.14.tgz

Step 3: Test Python Version

Verify the installed Python and PIP versions:

Bash
python3.10 -V
#Python 3.10.14

pip3.10 -V
#pip 23.0.1 from /usr/local/lib/python3.10/site-packages/pip (python 3.10)

You have successfully installed Python 3.10.14 on your Fedora, CentOS/RHEL 8, or Rocky Linux system.

Quicker Method

A user posted on GitHub a script to facilitate installation of python 3.10 on RHEL, the version installed is 3.10.8 and not .14

Bash
#!/usr/bin/env bash

sudo dnf install wget yum-utils make gcc openssl-devel bzip2-devel libffi-devel zlib-devel
# Ubuntu: sudo apt install -y wget yum-utils make gcc libssl-dev libbz2-dev libffi-dev zlib1g-dev
mkdir tmp
cd tmp
wget https://www.python.org/ftp/python/3.10.8/Python-3.10.8.tgz 
tar xzf Python-3.10.8.tgz 
cd Python-3.10.8 
sudo ./configure --with-system-ffi --with-computed-gotos --enable-loadable-sqlite-extensions --enable-optimizations
sudo make -j $(nproc)
# to remove the unused stuff: find . -maxdepth 1  -mtime +1 -exec rm -rf {} \;
# to install pip we can use: python -m ensurepip --upgrade
# it will install pip into $HOME/.local/bin
sudo make altinstall 
sudo rm Python-3.10.8.tgz
sudo update-alternatives --install /usr/bin/python3 python3 /usr/local/bin/python3.10 1
sudo update-alternatives --set python3 /usr/local/bin/python3.10
sudo rm -rf /usr/local/bin/pip3
sudo update-alternatives --install /usr/bin/pip3 pip3 /usr/local/bin/pip3.10 1
sudo update-alternatives --set pip3 /usr/local/bin/pip3.10

FAQ

  1. Can I install multiple versions of Python on the same system?
    Yes, you can have multiple Python versions installed simultaneously. Use the specific version’s binary (e.g., python3.10) to run the desired Python version.
  2. How do I set Python 3.10 as the default Python version?
    It’s generally not recommended to replace the default Python version to avoid potential system conflicts. However, you can create an alias or update your environment variables to use Python 3.10 by default.

IF YOU ARE HAVING PROBLEMS WITH THIS GUIDE, EMAIL US AT:

Vivaldi Se6iujxznk

Copyright @2022-2024 All Right Reserved – PCPlanet

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. You understand and give your consent that your IP address and browser information might be processed by the security plugins installed on this site. By clicking “Accept”, you consent to the use of ALL the cookies.
.
Accept Read More

Privacy & Cookies Policy