How To Determine Which Python Install Is Being Used By The Interpreter?
I have several software packages that install various installs of Python. For example: C:\Python27\ArcGIS10.1 C:\Python27\ArcGIS10.2 C:\Python27|ArcGISx6410.1 Using sys.version d
Solution 1:
What you want is sys.executable
, which will give the path to actual interpreter executable.
Post a Comment for "How To Determine Which Python Install Is Being Used By The Interpreter?"