Skip to content

Instantly share code, notes, and snippets.

@prerakmody
Created July 26, 2018 06:36
Show Gist options
  • Save prerakmody/37f26d505ded493337536beb6bee54a3 to your computer and use it in GitHub Desktop.
Save prerakmody/37f26d505ded493337536beb6bee54a3 to your computer and use it in GitHub Desktop.
Python Path Basics
import sys
import site
import numpy as np
if __name__ == "__main__":
print (sys.executable)
print (site.getsitepackages())
print (np.__file__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment