pyinstaller打包exe后运行报错:ModuleNotFoundError: No module named ‘xxx‘

Posted zhangphil

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyinstaller打包exe后运行报错:ModuleNotFoundError: No module named ‘xxx‘相关的知识,希望对你有一定的参考价值。

pyinstaller打包exe后运行报错:ModuleNotFoundError: No module named 'xxx'

原因是pyinstaller把某些第三方引用库的内部持有/调用的普通数据文件如.txt,.csv,.json这样的文件在编译过程中排除了,导致运行时找不到这些文件报错。

解决方法:

pyinstaller --hidden-import=报错提示中的模块名xxx  -F 程序入口代码文件.py

其中,xxx即是报错中提到的模块名。命令中的  -F  参数,将编译成一个单独的exe可执行文件。

以上是关于pyinstaller打包exe后运行报错:ModuleNotFoundError: No module named ‘xxx‘的主要内容,如果未能解决你的问题,请参考以下文章

pyinstaller打包exe后给别人总运行不了,怎么破

pyinstaller打包exe,运行时读取配置文件报错:NoSectionError,windows

pyinstaller打包exe,运行时读取配置文件报错:NoSectionError,windows

pyinstall打包exe换电脑后无法运行

pyinstaller 打包的exe在某些win7上面报错 faild to execute script pyi_rth_multiprocessing

PyInstaller 无法打包完成后,运行exe无反应?