python in liunx
Installing Python-3 ,Running the Python interactive-console,Passing arguments to a script Installing python-3 in centos-6 in Traditional Way and using yum Before this just add an EPEL repo to your cent-os yum list. Traditional way # yum install gcc --> Its a just dependency package Down load here # cd /usr/src # wget https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz Now extract the downloaded package. # tar xzf Python-3.4.3.tgz # cd Python-3.4.3 # ./configure # 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 Python-3.4.3.tgz Check the latest version installed of python using below command # python3.4 -V Python 3.4.3 Using yum package: #sudo yum install https://centos6.iuscommunity.org/ius-release.rpm #sudo yum search python3 Most probably, you would install Python 3.4: #...