I am looking for a piece of code Python code that would give me the path to IntelliJ IDEA or PyCharm exe if they are installed.

Usually, I would want to detect the same for Eclipse but it seems that Eclipse doesn't have an installer :(

link|improve this question

63% accept rate
Added as a bug to youtrack.jetbrains.net/issue/PY-4921 – Sorin Sbarnea Nov 1 '11 at 19:25
Is it "Python code" or "code, Python code, ..." since you mentioned "exe" I'll assume windows =P, have you considered the registry? – johnthexiii Nov 1 '11 at 19:38
feedback

1 Answer

up vote 1 down vote accepted

The installation path is stored in the registry: HKEY_CURRENT_USER\JetBrains\IntelliJ IDEA\<build number>\(Default)

(replace IntelliJ IDEA with PyCharm if you need the PyCharm installation path)

You can use the _winreg module to read the registry and retrieve the path.

link|improve this answer
So what do you expect to get from this StackOverflow question? The registry entries were designed to be used by our installer, and are perfectly adequate for its requirements. All of the difficulties you've mentioned can be overcome (and you can find out which version is the latest by checking the build.txt file in the installation directory). It's a simple matter of programming. – yole Nov 2 '11 at 17:54
Note: there is a current bug in the installer, it does not always cleanup an old installation registry entries so you need to manually check if the path from registry is valid. – Sorin Sbarnea Nov 2 '11 at 22:56
feedback

Your Answer

 
or
required, but never shown

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