1、pkg_resources.DistributionNotFound 在用pyinstaller打包(-D 选项)成功,执行打包后的exe报以下错误: 关键错误在最后一行: pkg_resources.DistributionNotFound: The 'google-api-python-client' distribution was not found and is required by the application 1. 解决问题的方法为:自己写个hook,然后放进pyinstalle...
意思是”pyinstaller没有找到,并且这个应用是必须的”你装了吗?没有的话就pip install一下 ...
先安装pip install pywin32 python用pyinstaller打包后,运行程序报错"pkg_resources.DistributionNotFound"的解决办法… pkg_resources.DistributionNotFound:the"prettytable"distribution wasnotfound... 这里明明已经打包好了exe文件,也没有报错。但是运行exe时候,却弹出这个界面一闪而过。 之后再查阅了pyinstaller的官方文档...
问题1 pkg_resources.DistributionNotFound:XXXXXXX distribution was not found 解决办法: 1、创建一个 hook-ctypes.macholib.py文件 内容如下: 1 2 3 from PyInstaller.utils.hooks import copy_metadata datas = copy_metadata('哪个插件not found就填哪个') 然后打包的时候,多加一句–additional-hooks-dir=. ...
pkg_resources.DistributionNotFound:XXXXXXX distribution was not found 解决办法: 1、创建一个 hook-ctypes.macholib.py文件 内容如下: fromPyInstaller.utils.hooksimportcopy_metadata datas=copy_metadata('哪个插件not found就填哪个') 1. 2. 3. 然后打包的时候,多加一句–additional-hooks-dir=. , 如下所示...
2、pkg_resources.DistributionNotFound pkg_resources.DistributionNotFound:The'html5tagger>=1.2.1'distribution was not found andisrequired by tracerite 解决: 添加如下参数:--copy-metadata=html5tagger 3、OSError: could not get source code Traceback (most recent call last): File "main.py", line ...
运行失败了:FileNotFoundError,因为数据文件没有打包进去。 打包成功:--add-data选项 我们前面用了最简单的打包命令,它会把python程序打包进去,不会复制数据,当然会报错了。 实际上pyinstaller可以支持很多命令选项,我们现在重新打包一次,加一个选项: pyinstaller --add-data "058.txt:." 058.py 这里添加了--add-...
path: opencv-python,为以下的错误提示 ImportError: OpenCV loader: missing configuration file: ['config.py']. Check OpenCV installation. --clollect-submodules: 为以下错误 pkg_resources.DistributionNotFound:The'pyqt5_plugins'distribution was not found andisrequired by the application ...
问题:python gdown DistributionNotFound;执行文件时出错 回答:这个问题是由于在执行Python脚本时,出现了"DistributionNotFound"错误,提示找不到相关的依赖包。具体来说,"python gdown DistributionNotFound"错误是指在使用gdown库时,Python解释器无法找到所需的依赖包。 解决这个问题的方法是确保所需的依赖包已经正...
你有什么想法吗? 浏览2提问于2012-05-26得票数 22 2回答 Pythone错误: pkg_resources.DistributionNotFound:“谷歌云翻译” 、 我构建了一个google翻译应用程序,它在py魅力方面运行得很好。当我使用pyinstaller将文件转换为单个可执行文件时,可执行文件没有运行。 浏览1提问于2021-08-19得票数 0 点击加载更多...