Created
July 26, 2018 06:36
-
-
Save prerakmody/37f26d505ded493337536beb6bee54a3 to your computer and use it in GitHub Desktop.
Python Path Basics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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