Created
September 21, 2017 05:06
-
-
Save basaks/1ee86a21c5b75740a68cfc5f8304fc07 to your computer and use it in GitHub Desktop.
Installing python 3.6 on centos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On centos7 perform the following steps | |
sudo yum -y update | |
sudo yum groupinstall 'Development Tools' -y | |
sudo yum -y install yum-utils https://centos7.iuscommunity.org/ius-release.rpm | |
sudo yum -y install python36u | |
Check it was installed properly: | |
>> python3.6 -V | |
Python 3.6.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment