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
  • 35
  • 1
  • 7

2 Answers2

2

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

Burhan Khalid
  • 169,990
  • 18
  • 245
  • 284
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
  • 3,047
  • 10
  • 54
  • 81
  • @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
  • 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