vote up 2 vote down star

How can I check from inside a java program if python is installed in windows? Python does not add its path to the system Path and no assumption is to be made about the probable path of installation(i.e it can be installed anywhere).

flag

71% accept rate
If Python is not on the System path, how will anyone ever find it? What are you asking for? A complete filesystem search for Python.exe? – S.Lott Aug 19 at 11:04
The python path does not get added to the system path on windows(Needs to be done manually). I was wondering if there is a way to find out without python being there on the system path.(Other than a complete filesystem search.) – Goutham Aug 19 at 11:10
If it's not on the path, and there are no "assumptions" to be made, then your choices are magic and full filesystem search. – S.Lott Aug 19 at 11:21
In that case my question is answered. – Goutham Aug 19 at 11:30
I'm still vague on this: What does "installed" means when Python is not on the PATH and cannot be run? – S.Lott Aug 19 at 11:37
show 1 more comment

5 Answers

vote up 1 vote down

Most Python installers add keys to the Windows registry. Here's an article about how to add that information, you can use it to see how to read the information.

link|flag
vote up 1 vote down

Have you tried querying the registry to check if it is installed? It is stored in

software\python\pythoncore

If the user has a (relatively) new version of python, that is installed with the MSI-package, you can use the MsiEnumProducts Function to check if python is installed.

link|flag
Ya thats one way. But will the registry be upto date? – Goutham Aug 19 at 10:40
IIRC, Python can be installed in a "no registry updates" mode. – S.Lott Aug 19 at 11:03
vote up 0 vote down

exec(String command) Executes the specified string command in a separate process. Check for Python from command

link|flag
The OP states that "Python does not add its path to the system Path", so how would this work? – Espo Aug 19 at 10:45
hey noo, it must be on PATH in windows atleast! – Pradyumna Aug 19 at 11:27
vote up 0 vote down

Use the Java Runtime to exec the following command "python --version".

If it works, you have Python, and the standard output is the version number.

If it doesn't work, you don't have Python.

link|flag
The OP states that "Python does not add its path to the system Path", so how would this work? – Espo Aug 19 at 10:46
If you can't execute python, then it isn't really "installed" is it? – S.Lott Aug 19 at 12:23
vote up 0 vote down

to everyone else: Python can be installed without modifying the paths, and then you have to run it with a fully qualified path name.

link|flag

Your Answer

Get an OpenID
or

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