Last active
October 2, 2015 17:08
-
-
Save greggyNapalm/2282306 to your computer and use it in GitHub Desktop.
python dev env; linux
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
#---------------------- | |
# Ubuntu 8.04 LTS/hardy | |
#---------------------- | |
# to build python from source | |
# apt-get install zlib1g-dev | |
# to build extensions | |
apt-get install build-essential | |
apt-get install python-dev | |
# isolated runtime | |
apt-get install python-setuptools | |
easy_install pip | |
pip install virtualenvwrapper | |
@ see https://bitbucket.org/dhellmann/virtualenvwrapper/issue/124/python-26-does-not-support-literal-octal | |
# vim dev | |
#apt-get install screen | |
apt-get install tmux | |
apt-get install ncurses-term | |
apt-get install vim | |
apt-get install exuberant-ctags | |
#----------------------- | |
# Ubuntu 10.04 LTS/lucid | |
#----------------------- | |
# isolated runtime | |
apt-get install python-pip | |
apt-get install python-virtualenv | |
#----------------------------------- | |
# Bash completion for pkg, git, make | |
#----------------------------------- | |
aptitude install bash-completion git-completion ncmpcpp-completion packagekit-bash-completion |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment