Windows10安装pycocotools报错的一些解决方法

Windows10安装pycocotools报错的一些解决方法

在自己安装pycocotools库时一直报错,折磨了两天,最终是解决了,于是乎写下这篇笔记供大家参考,第一次写博客~

参考up我是土堆的视频:土堆

YOLO5下载链接:YOLO5

在初次下载YOLO5时,在terminal使用指令pip install -r requirements.txt一键安装所需要的库时,发现出现报错。出现类似的字眼如:
Windows10安装pycocotools报错的一些解决方法_第1张图片
或者是

Building wheels for collected packages: pycocotools
Building wheel for pycocotools (setup.py) … error
ERROR: Command errored out with exit status 1:

可考虑采用以下解决方法!!!

解决方法:

方法一

安装C++生成工具:VS

参考土堆的视频进行安装C++

方法二

pycococtools的安装包 pycocotools提取码:i5d7


下载解压后得到两个文件,将以上两个文件夹复制至你anaconda虚拟环境所在的目录下中的site-packages文件夹内
如博主的目录为:

D:\Anaconda\ana\Lib\site-packages

方法三

在terminal输入指令

pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAP

博主使用方法二后重启Pycharm后发现pycocotools安装成功,再输入指令

pip install -r requirements.txt 

即完成了所需要库的安装`

你可能感兴趣的:(visual,studio,python,pycharm)