Basically I want to get a handle of the python interpreter so I can pass a script file to execute (from an external application).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This works in Linux, perhaps in Windows too?
|
|||||||||||||
|
|
sys.executable is not reliable if working in an embedded python environment. My suggestions is to deduce it from
|
|||
|
|
|
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. |
|||
|