Skip to content

Commit

Permalink
docs(readme): Add difference between pip freeze
Browse files Browse the repository at this point in the history
  • Loading branch information
bndr committed Apr 24, 2015
1 parent 36761b3 commit 3004f93
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,9 @@ Example
$ pipreqs /home/project/location
Successfuly saved requirements file in: /home/project/location/requirements.txt
Why not pip freeze?
-------------------

- ``pip freeze`` only saves the packages that are installed with ``pip install`` in your environment.
- pip freeze saves all packages in the environment including those that you don't use in your current project. (if you don't have virtualenv)
- and sometimes you just need to create requiremetns.txt for a new project without installing modules.

0 comments on commit 3004f93

Please sign in to comment.