Skip to content

Instantly share code, notes, and snippets.

View AuspeXeu's full-sized avatar
🐋

Chris Vaas AuspeXeu

🐋
View GitHub Profile
@AuspeXeu
AuspeXeu / gist:4de0d4a53b5550b059847ccff00d60bf
Last active June 5, 2017 15:03
Install Python3.5 on Raspberry Pi running Jessie
sudo apt-get install -y build-essential libc6-dev
sudo apt-get install -y libncurses5-dev libncursesw5-dev libreadline6-dev
sudo apt-get install -y libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev
sudo apt-get install -y libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev
wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz
tar -zxvf Python-3.5.2.tgz
cd Python-3.5.2
./configure
make -j4
sudo make install