0

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.

2 Answers2

2

You can use pip list or pip list --local

Andrej Kesely
  • 168,389
  • 15
  • 48
  • 91
0

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.

Eugene Primako
  • 2,767
  • 9
  • 26
  • 35