pycocotools安装失败解决办法

在windows下配置mmdection2.6时,配置完成试着运行,结果报了以下错:
AttributeError: COCO object has no attribute get_cat_ids
百度一搜,是因为pycocotools安装的不对,需要卸载安装,

卸载时又遇到了
ERROR: Cannot uninstall ‘pycocotools’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
这个问题需要先pip install --ignore-installed pycocotools
之后再pip uninstall pycocotools

重新安装的方法试了好几种,总结如下:
1、pip install pycocotools,我安装时候报错,conda install pycocotools安装也报错
2、pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
安装失败,说找不到对应版本
3、git clone https://github.com/pdollar/coco.git下载源码放到无中文的路经下,进入文件夹cocoapi/PythonAPI下
cmd到文件夹中,运行命令:python setup.py build_ext install
我也安装失败了
4、最后一种是从一个博主那学来的原文链接
pip install git+https://gitee.com/ztdztd/cocoapi.git#subdirectory=pycocotools
运行成功,感谢大佬pycocotools安装失败解决办法_第1张图片
20210509更新,切记安装pycocotools前先安装VS,安装时记得选择“使用C++桌面开发,不然还会出错。
20210724更新,如果上述方案都不行,这里附上我的VS配置文件,安装VS的时候点击更多,导入配置,成功后再按照上面的命令行进行安装pycocotools。
链接:https://pan.baidu.com/s/1sfeQwI4y2S31fluJQy3SKw
提取码:rqxzpycocotools安装失败解决办法_第2张图片

你可能感兴趣的:(pycocotools,mmdetection2.6,windows)