我试图每次使用pyinstaller为我的python脚本创建一个exe时,都会在pastebin here中发现错误。

另外,当我双击exe文件时,它也会显示此错误:



然后这个:



怎么了

最佳答案

我也遇到类似的问题。在您的情况下,可能是UPX破坏了vcruntime140.dll。
解决方案是关闭UPX,因此只需在您的pyinstaller调用中添加 --noupx

pyinstaller --noupx --onedir --onefile --windowed get.py

这里的详细说明:UPX breaking vcruntime140.dll (64bit)

关于python - 使用pyinstaller创建可执行文件时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38811966/

10-11 04:10