Skip to content

Instantly share code, notes, and snippets.

@joshkehn
Created April 29, 2013 21:53
Show Gist options
  • Select an option

  • Save joshkehn/5485111 to your computer and use it in GitHub Desktop.

Select an option

Save joshkehn/5485111 to your computer and use it in GitHub Desktop.
from fabric.api import local
import pip
def freeze ():
local("pip freeze > requirements.txt")
local("git add requirements.txt")
local("git commit -v")
def upgrade ():
for dist in pip.get_installed_distributions():
local("pip install --upgrade {0}".format(dist.project_name))
@thisizkp
Copy link
Copy Markdown

"import pip" in windows leads to infinte tracebacks..?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment