Skip to content

Instantly share code, notes, and snippets.

@hmbr
Created November 15, 2011 16:06
Show Gist options
  • Save hmbr/1367445 to your computer and use it in GitHub Desktop.
Save hmbr/1367445 to your computer and use it in GitHub Desktop.
virtual env && python
easy_install pip
pip install -U virtualenv
pip install -U virtualenvwrapper
#criar ambiente
virtualenv --no-site-packages --distribute DEFAULT
pip install -E DEFAULT pacote
#
pip install -E DEFAULT yolk
#listar pacotes
yolk -l
pip freeze --local | cut -d = -f 1 | xargs echo pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment