0

I'm new to python, and I installed so many libraries, so I forgot what I installed and not. I'd like to get a list of libraries I've installed. Any help would be grateful.

I'm using mac OS 10.9.2

Jeong Minu
  • 37
  • 1
  • 7

2 Answers2

2

Use pip list or install yolk with pip install yolk and then yolk -l.

Burhan Khalid
  • 152,028
  • 17
  • 215
  • 255
0

Go to your Python > IDLE (Python GUI) and type this:

help('modules')

The others has given some links for the answers as well

Cryssie
  • 2,587
  • 8
  • 41
  • 70
  • Great! This is what I was looking for – Jeong Minu Mar 11 '14 at 09:27
  • @JeongMinu - Great to know that. Do remember to pick an answer so they can close this thread. You can look here too for Mac machines. http://stackoverflow.com/questions/1055443/how-do-i-find-out-what-python-libraries-are-installed-on-my-mac – Cryssie Mar 11 '14 at 09:28
  • Thanks again. really helpful – Jeong Minu Mar 11 '14 at 09:38
  • How do find out for other IDEs like Jupyter? – MSIS Dec 16 '19 at 00:18
  • 1
    @MSIS You can type 'pip freeze' or 'pip list' into the Jupyter cell. You will get a list of packages including the version. The command 'pip list' gives you a nicer format for the packages and version. You can refer to this https://stackoverflow.com/questions/12939975/how-to-list-all-installed-packages-and-their-versions-in-python – Cryssie Dec 18 '19 at 02:06