关于python:Linux下OpenCV出现错误ASSERT-false-in-file-qasciikeycpp-line-501

28次阅读

共计 564 个字符,预计需要花费 2 分钟才能阅读完成。

原文链接

Linux 下 OpenCV,呈现谬误:

ASSERT false in file qasciikey.cpp, line 501

可能是 OpenCV 的版本有问题,须要重新安装一下:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-contrib-python

如果呈现提醒:

Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: ‘/anaconda3/lib/python3.7/site-packages/opencv_contrib_python-4.1.0.25.dist-info’
Consider using the --user option or check the permissions.

示意须要应用 --user

pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-contrib-python

 
 

学习更多编程常识,请关注我的公众号:

代码的路

本文由 mdnice 多平台公布

正文完
 0