Skip to content

Instantly share code, notes, and snippets.

@unbracketed
Created April 1, 2011 23:45
Show Gist options
  • Save unbracketed/899062 to your computer and use it in GitHub Desktop.
Save unbracketed/899062 to your computer and use it in GitHub Desktop.
Python packages that I like to start every new virtualenv with
ipdb
ipython
nose
coverage
pyflakes
pylint
ropevim
pep8
django-command-extensions
django-debug-toolbar
fabric
gunicorn
django-devserver
-e git://github.com/jbalogh/django-debug-cache-panel#egg=cache_panel
#!/bin/sh
mkenv(){
virtualenv --no-site-packages $1;
source $1/bin/activate;
pip install -U --download-cache=$PIP_DOWNLOAD_CACHE pip;
pip install --download-cache=$PIP_DOWNLOAD_CACHE -r common.pip
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment