在每台计算机上,每个AntiVirus-Software都会将我的cx_Freeze 5.0.2创建的exe文件检测为恶意软件。编译什么代码无关紧要,每个代码都被检测到。尝试在Python 3.4中使用cx_freeze 4.3返回并编译会导致很多错误,因为我的脚本存在兼容性问题。
我该怎么办?像py2exe这样的东西因为太多的错误和Python 3.6而无法正常工作。
答案 0 :(得分:0)
pyinstaller 包是最好的!见:http://www.pyinstaller.org/
你也需要安装pywin32软件包,然后你可以尝试这个(在你的命令行上运行):
pyinstaller.exe --onefile --windowed --icon=app.ico your_app.py
您可以在https://pythonhosted.org/PyInstaller/usage.html,https://mborgerson.com/creating-an-executable-from-a-python-script/
上找到所有命令