我如何知道python是不是安装了任何exe文件

Posted

技术标签:

【中文标题】我如何知道python是不是安装了任何exe文件【英文标题】:How do I know whether any exe file is installed by python我如何知道python是否安装了任何exe文件 【发布时间】:2022-01-22 20:02:10 【问题描述】:
def tocheck():
    exe = is_program_installed("Zoom")
    print(exe)
    
tocheck()

我想检查是否已经安装了任何 exe 文件,尝试了上面的代码,但没有给出任何结果,因为我的机器上安装了 zoom

【问题讨论】:

【参考方案1】:

您可以为此使用winapps python 库。

import winapps

def tocheck():
    exe = [app.name for app in winapps.search_installed('firefox')]
    print(exe)
    
tocheck()

【讨论】:

以上是关于我如何知道python是不是安装了任何exe文件的主要内容,如果未能解决你的问题,请参考以下文章

如何使用pyinstaller打包python文件为exe文件

python 中 使用 pyinstaller 打包的exe程序如何调用外部模块?

如何在windows下使用pip安装

如何在win7 64位系统下用pyinstaller打包python代码成exe

如何在win7 64位系统下用pyinstaller打包python代码成exe

怎样将写好的.py文件生成exe可执行文件