yolov5项目如何安装pycocotools和opencv-python?

yolov5项目如何安装pycocotools?

部分人运行 pip install -r requirements.txt之后opencv-python和 pycocotools可能还是无法自动安装如下图:
报错:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionErro
r(’: Failed to establish a new connection: [Errno 11001]
getaddrinfo failed’)’: /pypi/simple/opencv-python/

ERROR: Could not find a version that satisfies therequirement opencv-python (from versions: none)
ERROR: No matching distribution found for opencv-python

yolov5项目如何安装pycocotools和opencv-python?_第1张图片

解决方法一:

手动pip install pycocotools和pip install opencv-python
注:如果这样就能安装就太好了,不用看下一个解决方法了。

解决方法二:

1安装pycocotools

链接:https://pan.baidu.com/s/19rFLqtOfcF8SAiQR3bIK_Q
提取码:rf2z
手动下载pycocotoolsb包
yolov5项目如何安装pycocotools和opencv-python?_第2张图片
将这两个包放到:
yolov5项目如何安装pycocotools和opencv-python?_第3张图片
安装成功

镜像安装opencv-python

在要安装的环境terminal里面输入:
镜像安装格式
pip install opencv-python -i <你的镜像url>

镜像名称 镜像ur
清华 https://pypi.tuna.tsinghua.edu.cn/simple
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学 http://pypi.hustunique.com/
山东理工大学 http://pypi.sdutlinux.org/
豆瓣 http://pypi.douban.com/simple/

一般conda使用清华源即输入:
pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple

yolov5项目如何安装pycocotools和opencv-python?_第4张图片

你可能感兴趣的:(错误,日常学习,oepncv,python,opencv,开发语言)