How to Install Python 3.9 on CentOS 7 Updated on March 21, 2025 by Jesse Owens 1 Minutes, 26 Seconds to Read One of the most popular programming languages is Python, used in everything from low-level scripting to high-level application development. As of 2020, Python 3 has taken the place of its predecessor, Python 2. Python 3 can be installed on most modern operating systems, including Windows and CentOS. In this article, we will outline how to install Python 3.9 on CentOS 7. Installing Python Package Manager PIP Before we can install the Python package manager, PIP, we need to enable additional software repositories using the following command:sudo yum install epel-release Next, install PIP using the following command:sudo yum install python-pip Finally, confirm that the installation was successful using the following command:pip --version If successful, the system should display the PIP version as well as your current Python version. Installing Python 3.9 Now that we have PIP installed, we can proceed with installing the latest version of Python, 3.9. Before installing Python you will first need to install the requisite software packages using the following command: sudo yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel Once that is done, navigate to the /usr/local/src directory:cd /usr/local/src Download the latest version of Python using the wget command as follows:wget https://www.python.org/ftp/python/3.9.21/Python-3.9.21.tgz Once the file is downloaded, extract it using the following command:tar -xvf Python-3.9.21.tgz Once the file has extracted, move into the directory that was createdcd Python-3.9.6 Configure the installation using the following command:./configure —-prefix=/usr/local/ Run the following command:sudo make Next, build Python using the following command:sudo make altinstall After the installation process has finished, confirm the version using the following command:python3.9 --version Congratulations, you have successfully installed Python 3.9 and PIP! Trust your business to an industry leader in fast and reliable website hosting solutions. InMotion Hosting offers secure web hosting with 99.99% uptime, 24/7 expert human support, and 100% money-back guarantee. Share this Article Related Articles Understanding Linux Operating Systems How to Install Python 3.9 on CentOS 7 Speed Up grep Searches with LC_ALL=C How To Install RubyGems On Linux unrar and rar Commands 5 Ways to Find a File in Linux Setting Your PHP Settings in Command Line How to Check the Memory Usage on Linux How to Send Files to the Trash Can in Linux with Gio Trash How to Merge PDF Files in the Linux Terminal
Hi, I follow your instructions all was well but when i used command “sudo make” then got fail here : Could not import runpy module Traceback (most recent call last): File “/home/centos/Python-3.9.6/Lib/runpy.py”, line 15, in import importlib.util File “/home/centos/Python-3.9.6/Lib/importlib/util.py”, line 2, in from . import abc File “/home/centos/Python-3.9.6/Lib/importlib/abc.py”, line 17, in from typing import Protocol, runtime_checkable File “/home/centos/Python-3.9.6/Lib/typing.py”, line 21, in import collections SystemError: returned NULL without setting an error generate-posix-vars failed make: *** [pybuilddir.txt] Error 1 any solution to this ?
Hello Ali – Sorry for the issue. This issue happens if the installation was canceled in between or an old environment was not properly removed and was overwritten. (https://stackoverflow.com/questions/44463879/could-not-import-runpy-module#:~:text=This%20happens%20if%20the%20installation,to%20re%2Dinstall%20the%20environment.&text=Save%20this%20answer.,-Show%20activity%20on). They suggest reinstalling the environment. If you continue to have issues, please contact our live support team for help on your server.
Once you have the py3.9 installed, how do you register a flask app in cpanel to use the new install rather than the detail 2.7?
The guide was missing a step where you run the “make” command, I have added it as Step 5 above. Other than that it should work. Keep in mind that if you are installing on a VPS, you may not see the installation in cPanel, and python 3.9 is already available on our Shared Hosting plans.
Thank you very much. Just want to add that i didn’t understand the step 4 and stuck in it untill i moved into Python-3.9.6 directory.
Thanks for the feedback! I’m glad to hear that you found the article helpful and were able to sort out the confusion. We’ll review the wording on step 4 and see what we can do to make it a bit clearer for future readers.