共计 443 个字符,预计需要花费 2 分钟才能阅读完成。
明天写 python 的时候,用 pyinstaller 打包的时候,援用了 cv2,呈现了这个报错:
ImportError: OpenCV loader: missing configuration file: ['config.py']. Check OpenCV installation.
而后查了很多办法 …. 说什么降级 pyinstaller 和 opencv 模块就能够解决好。
然而。。。。。不行~ 我狐疑就是模块引入问题~
新建一个 python 文件,获取 opencv 的门路:
`import cv2
print(cv2.__file__) `
这里我失去的是:C:\Anaconda3\lib\site-packages\cv2\__init__.py
在从新应用 pyinstaller 打包,退出 paths 参数:
pyinstaller main.py -F –paths=”C:\Anaconda3\lib\site-packages\cv2″
报错没了,胜利运行!
转载地址:https://www.dchuanbao.com/
正文完