将Python 3.6脚本转换为.exe?

时间:2017-08-06 19:41:55

标签: python python-3.6

我想将.py文件转换为.exe文件。我使用的是Python 3.6。我已经尝试过py2exe和PyInstaller,但它们似乎与Python 3.6无法正常工作。

这是traceback from PyInstaller

1 个答案:

答案 0 :(得分:1)

所以,让我们先试试Pyinstaller。

$ pyinstaller script.py --onefile

这将生成一个script.spec文件 在spec文件中,您可以删除控制台,调试模式等

$ pyinstaller script.py

编辑:Py3.6 isn't supported

如果这不起作用,我们可以尝试cx_freeze