Skip to content

Instantly share code, notes, and snippets.

@samhagin
Created August 20, 2019 07:46
Show Gist options
  • Save samhagin/4c066f522158dfd94a682567a8266f75 to your computer and use it in GitHub Desktop.
Save samhagin/4c066f522158dfd94a682567a8266f75 to your computer and use it in GitHub Desktop.
Install Python 3 on CentOS 7
# 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