Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ari-vedant-jain/d4222a76c7791c6f4402b8f79593ae54 to your computer and use it in GitHub Desktop.

Select an option

Save ari-vedant-jain/d4222a76c7791c6f4402b8f79593ae54 to your computer and use it in GitHub Desktop.
import pip
installed_packages = pip.get_installed_distributions()
installed_packages_list = sorted(["%s==%s" % (i.key, i.version)
for i in installed_packages])
print(installed_packages_list)
sorted(["%s==%s" % (i.key, i.version) for i in pip.get_installed_distributions()])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment