How to Install Python 3.6 on CentOS/RHEL 7/6 & Fedora 30/29

Channel: Linux
Abstract: 4. Check Python Version Check the latest version installed of python using below command. python3.6 -Vmake altinstall is used to prevent replacing the

Python is a powerful programming language. It is very friendly and easy to learn. At writing time of this article Python 3.6.10 latest stable version is available to download and install. This tutorial will help you to install Python 3.6.10 on your CentOS, Red Hat & Fedora operating systems.

1. Requirements

This Python installation required GCC compiler on your system. Login to your server using ssh or shell access. Now, use the following command to install prerequisites for Python before installing it.

yum install gcc openssl-devel bzip2-devel sqlite-devel
  • Read: How to Use SSH to Connect Remote Linux Server
2. Download Python 3.6

Download Python using the following command from the Python official site. You can also download the latest version in place of specified below.

cd /usr/src
wget https://www.python.org/ftp/python/3.6.10/Python-3.6.10.tgz

Now extract the downloaded package.

tar xzf Python-3.6.10.tgz
3. Install Python 3.6

Use below set of commands to compile Python source code on your system using altinstall.

cd Python-3.6.10
./configure --enable-optimizations
make altinstall

make altinstall is used to prevent replacing the default python binary file /usr/bin/python .

Now remove downloaded source archive file from your system

rm /usr/src/Python-3.6.10.tgz
4. Check Python Version

Check the latest version installed of python using below command.

python3.6 -V

Python 3.6.10

Ref From: tecadmin

Related articles