如何使用 Python 检测是否安装了 IntelliJ IDEA 或 PyCharm 并获取 Windows 上 exe 的路径?

发布于 2024-12-13 07:12:43 字数 116 浏览 0 评论 0原文

我正在寻找一段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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫性小仙女 2024-12-20 07:12:43

安装路径存储在注册表中:
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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文