Skip to content

Instantly share code, notes, and snippets.

View Zacharyprime's full-sized avatar
🤖

Zachary Sasser Zacharyprime

🤖
View GitHub Profile
@Zacharyprime
Zacharyprime / MakeAWombat
Last active November 21, 2022 21:26
Detailed instructions for building a Wombat OS from scratch; The goal is to be able to take any linux image and just run this as a shell script and automatically build up to the current state of the botball controller.
# Make a Wombat from Scratch
#-------- DESKTOP SETUP (ignore if desktop is already setup) --------
#Install a desktop environment (doesn't have to be lxde)
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install xinit lxde
#Edit this file to automatically start in desktop environment
vim ~/.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!)"