The default yum repositories provides Python 3.6 packages to install on CentOS 8 systems. So this article will help you to install Python 3.7 by compiling source code on CentOS 8 and RHEL 8 Linux systems.

Prerequisites

Login to your CentOS 8 system with root or sudo privileged account. Desktop users open a terminal on your system. Then use the following command to install required development libraries for Python before installing it.

Download Python 3.7 Archive

You can download Python using following command from its official site. We also recommend to visit python ftp directory to check for latest version. To download Python 3.7.9, use the following commands. Then, extract the downloaded archive on your system.

Install Python 3.7 on CentOS 8

After extracting the archive file, switch to the extracted directory. Then configure the source files based on your system environment. After that use following commands to compile python source code on your system using altinstall. Now remove downloaded source archive file from your system

Test Python Version

Using the above installation, Python creates a separate binary file on your system. To use Python 3.8, you need to use the specific binary file. To test the Python 3.7, execute:

Conclusion

In this tutorial, you have learned to install Python 3.7 on CentOS 8 from source code.