Created
August 20, 2019 07:46
-
-
Save samhagin/4c066f522158dfd94a682567a8266f75 to your computer and use it in GitHub Desktop.
Install Python 3 on CentOS 7
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
# brought to you by doitwithcode.com | |
# add Inline with Upstream Stable repository | |
sudo yum install -y https://centos7.iuscommunity.org/ius-release.rpm | |
# run an update | |
sudo yum update | |
# install Python 3 | |
sudo yum install -y python36u python36u-libs python36u-devel python36u-pip | |
# verify python version | |
python3.6 --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment