Skip to content

Instantly share code, notes, and snippets.

@EnviralDesign
Last active March 2, 2022 22:22
Show Gist options
  • Select an option

  • Save EnviralDesign/dd131da5510f87b02596481dde310b2f to your computer and use it in GitHub Desktop.

Select an option

Save EnviralDesign/dd131da5510f87b02596481dde310b2f to your computer and use it in GitHub Desktop.
prints the installed python packages pythonically and not via pip/cmd
# 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