Skip to content

Instantly share code, notes, and snippets.

@ellisvalentiner
Created February 17, 2018 15:58
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 ellisvalentiner/41cc12d75eedb50f093f0bfa73db4615 to your computer and use it in GitHub Desktop.
Save ellisvalentiner/41cc12d75eedb50f093f0bfa73db4615 to your computer and use it in GitHub Desktop.
Install script for Python 3 on Raspbian
#!/usr/local/bin/bash
# sudo apt-get -y update && sudo apt-get upgrade
wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tar.xz
tar xf Python-3.6.4.tar.xz
cd Python-3.6.4
./configure
make
sudo make altinstall
sudo rm -rf Python-3.6.4.tar.xz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment