Install Required Packages
Use the following command to install prerequisites for Python before installing it.# yum install gcc
Download Python 3.5.2
Download Python using following command from python official site. You can also download latest version in place of specified below.# cd /usr/src # wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgzNow extract the downloaded package.
# tar xzf Python-3.5.2.tgz
Compile Python Source
Use below set of commands to compile python source code on your system using altinstall.# cd Python-3.5.2 # ./configure # make altinstall
Now remove downloaded source archive file from your system
# rm Python-3.5.2.tgz
Check Python Version
Check the latest version installed of python using below command#python3.5 -V Python 3.5.2
Comments
Post a Comment