Created
May 19, 2014 17:58
-
-
Save sankars/ad567a9e1a56c71c5e2c to your computer and use it in GitHub Desktop.
Python script for print details about python kit and system
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
| ## http://stackoverflow.com/questions/4583367/how-to-run-multiple-python-version-on-windows | |
| ## print installed version of python | |
| python -V | |
| import sys | |
| sys.version | |
| ## print python modules path | |
| import sys | |
| sys.path | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment