Skip to content

Instantly share code, notes, and snippets.

@greggyNapalm
Last active October 2, 2015 17:08
Show Gist options
  • Save greggyNapalm/2282306 to your computer and use it in GitHub Desktop.
Save greggyNapalm/2282306 to your computer and use it in GitHub Desktop.
python dev env; linux
#----------------------
# 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