Skip to content

Instantly share code, notes, and snippets.

@tmcolby
Created September 13, 2019 22:00
Show Gist options
  • Save tmcolby/799b1cf36a8f087aea1b97ce3b9aacd0 to your computer and use it in GitHub Desktop.
Save tmcolby/799b1cf36a8f087aea1b97ce3b9aacd0 to your computer and use it in GitHub Desktop.
install python 3.6 on raspberry pi
sudo apt-get install python3-dev libffi-dev libssl-dev -y
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz
tar xJf Python-3.6.3.tar.xz
cd Python-3.6.3
./configure
make
sudo make install
sudo pip3 install --upgrade pip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment