This file contains 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
# 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 |
This file contains 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 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!)" |