Last active
March 2, 2022 22:22
-
-
Save EnviralDesign/dd131da5510f87b02596481dde310b2f to your computer and use it in GitHub Desktop.
prints the installed python packages pythonically and not via pip/cmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # prints the installed python packages pythonically and not via pip/cmd | |
| try: | |
| del sys.modules['pkg_resources'] | |
| except AttributeError: | |
| pass | |
| import pkg_resources | |
| for resource in pkg_resources.working_set: | |
| print( resource ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment