Install Python3.7 From Source
Python is a powerful programming language. It is very friendly and easy to learn. At writing time of this article Python 3.7.3 latest stable version is available to download and install. This tutorial will help you to install Python 3.7.3 on your CentOS, Red Hat & Fedora operating systems. Step 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 libffi-devel Read: How to Use SSH to Connect Remote Linux Server Step 2 – Download Python 3.7 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.7.3/Python-3.7.3.tgz Now extract the downloaded package. tar xzf Python-3.7.3.tgz Step 3 – Install Python 3.7 Use below set ...