Skip to content

Instantly share code, notes, and snippets.

@mhoffman
Created November 7, 2017 17:57
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/18a143448578b267824b65467441fdcc to your computer and use it in GitHub Desktop.
Save mhoffman/18a143448578b267824b65467441fdcc 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