如何使用 Python 检测是否安装了 IntelliJ IDEA 或 PyCharm 并获取 Windows 上 exe 的路径?
我正在寻找一段Python代码,如果安装了它们,它会给我IntelliJ IDEA或PyCharm exe的路径。
通常,我想为 Eclipse 检测相同的内容,但 Eclipse 似乎没有安装程序:(
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 :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装路径存储在注册表中:
HKEY_CURRENT_USER\JetBrains\IntelliJ IDEA\\(Default)
(如果需要 PyCharm 安装路径,请将 IntelliJ IDEA 替换为 PyCharm)
您可以使用 _winreg 模块读取注册表并检索小路。
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.