Created
September 13, 2019 22:00
-
-
Save tmcolby/799b1cf36a8f087aea1b97ce3b9aacd0 to your computer and use it in GitHub Desktop.
install python 3.6 on raspberry pi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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