Skip to content

Instantly share code, notes, and snippets.

View Zacharyprime's full-sized avatar
🤖

Zachary Sasser Zacharyprime

🤖
View GitHub Profile
@Zacharyprime
Zacharyprime / python-3.6-pi.sh
Created July 14, 2021 16:57 — forked from xslendix/python-3.6-pi.sh
Install python 3.6 on your RPi!
sudo apt-get update
sudo apt-get install build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev -y
wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz
tar xf Python-3.6.0.tar.xz
cd Python-3.6.0
./configure
make
sudo make altinstall
echo "Do you wish to delete the source code and uninstall all previously installed packages? {Y/N} (Case sensitive!)"