pyinstaller打包包含pandas的文件时出现的问题

  • Post author:
  • Post category:其他


制作了一个读取csv文件处理后生成excel文件的小程序,使用了pandas包,在打包时遇到了一些问题,并找到了解决方案




错误问题

可以打包,但是在运行时候会出现问题

在这里插入图片描述




解决方案

我先后尝试了多种方案,包括:

1、在生成时使用

--hidden-import=


https://blog.csdn.net/weixin_30617737/article/details/94909268


结果:

错误未解决

2、修改spec文件进行生成

https://stackoverflow.com/questions/29109324/pyinstaller-and-pandas


结果:

错误未解决

3、安装pandas

由于写程序时是在anaconda环境中写的,在查阅错误问题时发现他好像和本机的环境有所区别,所以有点怀疑是不是环境中没有安装pandas所导致,因此进行安装

pip install pandas

报错:

在这里插入图片描述

这里是源有问题,更换为国内源后重试

# 配置清华PyPI镜像(如无法运行,将pip版本升级到>=10.0.0) 
 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip install pandas

安装成功,重新打包

pyinstaller -F -i yours.ico yours.py

生成成功,但是在运行时又报错

在这里插入图片描述

这个问题的解决使用的是

pyinstaller -F --hidden-import=pkg_resources.py2_warn -i yours.ico yours.py

https://stackoverflow.com/questions/37815371/pyinstaller-failed-to-execute-script-pyi-rth-pkgres-and-missing-packages

排错参考文章:


Pyinstaller 中 pandas出错问题的解决(详细)



PyInstaller and Pandas



pandas模块安装失败解决方案(使用国内镜像)



Pyinstaller “Failed to execute script pyi_rth_pkgres” and missing packages



版权声明:本文为weixin_44523829原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。