tiancaizcx 发表于 2022-8-9 23:43:41

生成exe文件缺少第三方库的依赖

请问一下,我import pandas
import docx

运行exe的时候,总是缺失docx和pandas

Traceback (most recent call last):
File "gui.py", line 3, in <module>
    import docx
ModuleNotFoundError: No module named 'docx'
Failed to execute script 'gui' due to unhandled exception!

exe文件无法运行,我是学了一周的新手,求教一下各位大神,这种情况怎么解决啊?

临时号 发表于 2022-8-10 00:09:28

你可以看一下这篇文章->https://blog.csdn.net/weixin_39946500/article/details/110317226

tommyyu 发表于 2022-8-10 19:39:20

如果已经下载了pip,可以在命令行窗口中输入 py -3 -m pip install 模块名
如果还没有下载pip,建议先到python官网下载pip

tiancaizcx 发表于 2022-8-10 22:44:58

牛逼,测试成功!
页: [1]
查看完整版本: 生成exe文件缺少第三方库的依赖