Reputation:
I'm using Python 3.7 on Windows.
I'm not looking for the packages which are shipped with Python.
I just want the names of the 3rd party packages that I have manually installed using pip.
Thanks.
Upvotes: 0
Views: 785
Reputation: 2817
pip freeze will do it for you:
$ pip freeze
docutils==0.11
Jinja2==2.7.2
MarkupSafe==0.19
Pygments==1.6
Sphinx==1.2.2
You will probably need option -l too.
Upvotes: 0