Created
March 16, 2017 20:32
-
-
Save nnja/4d8ee8a10f60cf65f7598b1d4e7c061d to your computer and use it in GitHub Desktop.
Print IPython Version and Executable
This file contains 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 os, sys, IPython | |
print(os.environ['VIRTUAL_ENV']) | |
print(sys.executable) | |
print(IPython.__file__) | |
print(sys.path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment