user10046192
user10046192

Reputation:

How do I get the list of third-party python packages that I have installed with pip?

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

Answers (2)

Andrej Kesely
Andrej Kesely

Reputation: 195408

You can use pip list or pip list --local

Upvotes: 2

Eugene Primako
Eugene Primako

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

Related Questions