Last Updated: February 25, 2016
·
3.455K
· tttthomasssss

Easily batch-install packages with pip

Put all the packages you need (optionally with version number) into a requirements.txt file, looking something like:

django

django-extensions==1.1.1

psycopg2

south==0.8.1

Then, simply run in your shell:

pip install -r requirements.txt

Done!

1 Response
Add your response

There is also usefull pip freeze to get current packages installed. Especially useful with virtualenv.

over 1 year ago ·