Skip to content

Instantly share code, notes, and snippets.

@nerdralph
Last active January 19, 2018 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nerdralph/b4a795faa4e14379e37a03cad879ad8c to your computer and use it in GitHub Desktop.
Save nerdralph/b4a795faa4e14379e37a03cad879ad8c to your computer and use it in GitHub Desktop.
Python 3.5.1 download and install script for RPM-based Linux platforms
#!/bin/sh
sudo yum -y update
sudo yum -y groupinstall "Development tools"
sudo yum -y install zlib-devel openssl-devel
wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tar.xz
tar xJf Python-3.5.1.tar.xz
cd Python-3.5.1
./configure --prefix=/usr/local
sudo make install
python3 --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment