vote up 1 vote down star

Basically I want to get a handle of the python interpreter so I can pass a script file to execute (from an external application).

flag

56% accept rate

2 Answers

vote up 8 vote down

This works in Linux, perhaps in Windows too?

>>> import sys
>>> print sys.executable
/usr/bin/python
link|flag
Yep - >>> import sys | >>> print sys.executable | C:\Python25\pythonw.exe – Smashery Apr 14 at 23:50
Works on Mac OS X too. – FogleBird Apr 14 at 23:50
I think in a py2exe compiled app, it would point to the executable for the app, and not the python.exe. Someone would have to confirm though. – FogleBird Apr 14 at 23:53
That only makes sense if you are already running the Python interpreter. I think he's trying to find the location from outside of Python itself. – John Montgomery Apr 15 at 10:38
vote up 3 vote down

I think it depends on how you installed python. Note that you can have multiple installs of python, I do on my machine. However, if you install via an msi of a version of python 2.2 or above, I believe it creates a registry key like so:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Python.exe

which gives this value on my machine:

C:\Python25\Python.exe

You just read the registry key to get the location.

However, you can install python via an xcopy like model that you can have in an arbitrary place, and you just have to know where it is installed.

link|flag
If it is in App Paths you don't even need to know the location do you? ;) – Gleb Apr 14 at 23:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.