Skip to content

Instantly share code, notes, and snippets.

@mhoffman
Created July 5, 2018 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhoffman/b2457f95eb0fe58ababde3dcb371dbf0 to your computer and use it in GitHub Desktop.
Save mhoffman/b2457f95eb0fe58ababde3dcb371dbf0 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
### List current import path for python
def ppath():
import sys
for p in sys.path:
print(p)
if __name__ == '__main__':
ppath()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment