Python Forum

Full Version: List of Modules/Libraries Installed by Default?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I know I can get a list of what's installed using:
pip freeze

However, I don't know which of the installed modules/libraries are installed by default by the Python 3.x installer and which ones I installed by hand later.

Does anyone know where I can find this info? Or is there a pip or pip freeze trick I've missed that will show installation dates? I'm using Python 3.9.13.

Thanks, y'all.
Standard libraries are not displayed by pip list or pip freeze. The standard libraries are documented here:

https://docs.python.org/3/library/index.html
(Oct-14-2022, 04:11 PM)deanhystad Wrote: [ -> ]Standard libraries are not displayed by pip list or pip freeze. The standard libraries are documented here:

https://docs.python.org/3/library/index.html

Okay, thanks, Dean.