Skip to content

Instantly share code, notes, and snippets.

@zekroTJA
Last active June 12, 2019 23:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zekroTJA/befbb9f4001b9c05ed4840f2d3570e1a to your computer and use it in GitHub Desktop.
Save zekroTJA/befbb9f4001b9c05ed4840f2d3570e1a to your computer and use it in GitHub Desktop.
#!/bin/sh
# IF THERE IS A NEWER PYTHON VERSION AVAILABLE, CHANGE VERSION HERE
RELEASE=3.6.2
sudo apt-get install libbz2-dev liblzma-dev libsqlite3-dev libncurses5-dev libgdbm-dev zlib1g-dev libreadline-dev libssl-dev tk-dev
mkdir ~/python3
cd ~/python3
wget https://www.python.org/ftp/python/$RELEASE/Python-$RELEASE.tar.xz
tar xvf Python-$RELEASE.tar.xz
cd Python-$RELEASE
./configure
make
sudo make install
sudo rm -rf ~/python3/Python-$RELEASE
cd ~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment