用pyinstaller打包时报错FileNotFoundError怎么解决?
FileNotFoundError: [Errno 2] No such file or directory: 'C:\Users\HZL\AppData\Roaming\pyinstaller\bincache00_py37_32bit\vcruntime140.dll'…
anaconda 虚拟环境使用 pyinstaller 打包 32位 exe
64 位 win10 系统,安装了 anancoda 64 位版本,用 python 写了个程序,准备使用 pyinstaller 打包为一个 exe 给别人使用,使用conda 默认的base 环…
Mac下如何打包发布使用了QtWebEngine的PyQt5程序?
先用Pyinstaller打包后生成一个app,然后只有Contents这个目录打开这个里面是Framework(空)、Info.plist MacOS(空)、 Resources(只有一个图标)…
mac上使用pycharm打包应用程序为exe
pyinstaller 打包时操作系统不同会有影响吗? 同样的程序,在windows安装的pycharm上我使用pyinstaller -i xxx.ico main.py -p xxx依赖包路径可以打…
pyinstaller 第三方包打包问题
问题描述 pyinstaller打包时报错: raise JSONDecodeError("Expecting value", s, err.value) from Nonejson.decoder.JSONDecodeError: Expecting val…
python3.6 pyinstaller的UnicodeDecodeError错误
简单说明:1、之前在相同环境下有打包成功的实例,表明安装包等没有问题,应该是问题出在py文件上2、按照搜索到的方法尝试均没效果(删除中文注释,…
win32com 生成的程序无法正常处理Word文档
代码一切正常,通过调用win32com.client处理Word文档,具体操作包含查找、expand,相关操作都来自MSDN文档 但是,生成程序后竟然无法正常执行某些代…
如何用pyinstaller打包pandas,并避开一些常见的错误
问题 小弟想用pandas生成一个DataFrame输入为.csv文件,然而打包的.exe文件,运行后无法实现。 1.环境 Win10 Python3.6.4(Anaconda最新版) PyInstall…
pyinstaller打包py出错ImportError: No module named FileDialog.
我用pyinstaller打包,环境是python2.7.11,pyinstaller 3.3.1.只有这两个py文件 这是manage_utils.py 这是mainform.py.里面的代码全都注释掉了,只是…
pyinstaller 打包之后,运行无法生成log文件,是为什么?
在没有打包成EXE文件之前是可以正常生成log文件的,用pyinstaller打包之后,再点击运行exe文件,却无法生成log文件夹了。exe运行正常,就是程序报错…
关于Pyinstaller中add-data的作用?
我用pygame1.9.2写好了一个game.py和一堆其他的py文件,然后直接双击可以打开。但是程序需要一张图片,ship.bmp,于是我的game.spec里面是这样写的:…
用Pyinstaller打包时出现IndexError怎么回事?
在我的package里面有个game.py写好的,然后用pyinstaller打包就出现了下面的情况: C:\package>pyinstaller -F game.py 166 INFO: PyInstaller: 3.2.…