Superior Administrator _.:=iTake=:._ Posted August 18, 2019 Superior Administrator Report Posted August 18, 2019 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 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 of commands to compile Python source code on your system using altinstall. cd Python-3.7.3 ./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.7.3.tgz Step 4 – Check Python Version Check the latest version installed of python. Use command python3.7 instead of just python. python3.7 -V Python 3.7.3 Source: This is the hidden content, please Sign In or Sign Up 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now