Create a requirements.txt file of packages only in the current virtualenv

suggest change

pip assists in creating requirements.txt files by providing the freeze option.

pip freeze --local > requirements.txt

The --local parameter will only output a list of packages and versions that are installed locally to a virtualenv. Global packages will not be listed.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents