-
-
Save galanteh/37c18938734e7f215e49c77e1a22822e to your computer and use it in GitHub Desktop.
Installing Python3.6 in 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
#! /bin/bash | |
sudo yum install -y epel-release | |
sudo yum install -y python36 | |
sudo yum install -y python36-devel | |
sudo yum install -y python36-pip | |
sudo yum install -y python36-setuptools | |
sudo easy_install-3.6 pip | |
sudo python3.6 -m pip install --upgrade pip setuptools wheel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment