dotfiles/.debian

16 lines
398 B
Plaintext
Raw Normal View History

2013-03-30 23:52:40 -06:00
sudo -v
2013-03-30 23:54:22 -06:00
INSTALL="apt-get -y install"
$INSTALL zsh
$INSTALL tmux
$INSTALL emacs
$INSTALL nmap
$INSTALL readline
2013-03-30 17:57:38 -06:00
# python dependencies
2013-03-30 23:54:22 -06:00
$INSTALL libreadline5-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
2013-03-30 17:57:38 -06:00
cd ~/Downloads
wget http://python.org/ftp/python/2.7.2/Python-2.7.2.tgz
tar -xvf Python-2.7.2.tgz && cd Python-2.7.2/
./configure
make
sudo make altinstall