Last active
July 7, 2017 07:56
-
-
Save DBarthe/1bda76488a0349b305e8c8394c125c6a to your computer and use it in GitHub Desktop.
Install python3.6 environnement on centos7
This file contains hidden or 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
sudo yum -y update | |
sudo yum -y install yum-utils | |
sudo yum -y groupinstall development | |
sudo yum -y install https://centos7.iuscommunity.org/ius-release.rpm | |
sudo yum -y install python36u | |
sudo yum -y install python36u-pip | |
sudo yum -y install python36u-devel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage:
wget -O - https://gist.githubusercontent.com/DBarthe/1bda76488a0349b305e8c8394c125c6a/raw/f09ab5256884c4c5bbe3d42d7c9ffc35f82c1618/install-python36.sh | bash