23

I have Python installed in Windows and used pip to install lots of things.

How can I know what packages I installed with pip?

Peter Wood
  • 23,859
  • 5
  • 60
  • 99
life_is_a_for_loop
  • 333
  • 1
  • 3
  • 8
  • 1
    @PeterWood I guess it means `pip install`-ed. `pip freeze` will show the list. – avysk Feb 27 '17 at 11:52
  • 1
    Possible duplicate of [Find all packages installed with pip](http://stackoverflow.com/questions/6600878/find-all-packages-installed-with-easy-install-pip) – Chanda Korat Feb 27 '17 at 11:54

1 Answers1

30

pip list will list all your installed packages.

GPX
  • 3,506
  • 10
  • 52
  • 69