当我将Py文件转换为exe时,出现“ [1516]执行脚本失败”错误

时间:2019-08-15 12:43:22

标签: python tkinter pyinstaller

我正在cmd上使用此命令:

pyinstaller --onefile "Tkinter Final".py

然后它将转换为exe,但是当我要启动.exe文件时,出现错误:

This is the image shows the error

2 个答案:

答案 0 :(得分:1)

我已经解决了在导入大熊猫之前添加它们的问题

import numpy.random.common
import numpy.random.bounded_integers
import numpy.random.entropy

编辑:您也可以在cmd上使用此方法:

pyinstaller --hidden-import="numpy.random.common" --hidden-import="numpy.random.bounded_integers" --hidden-import="numpy.random.entropy" yourfilename.py

答案 1 :(得分:0)

也许可以将numpy.random添加到隐藏的导入中。

Documentation about hidden import