在windows10上安装pycocotools

Faster-rcnn和Mask-rcnn上在训练Coco数据集时需要安装pycocotools。在安装过程中应注意以下几点:

1. 在 pip install pycocotools 时报错

该错误是指Windows下没有c/c++代码编译环境,需要安装 Microsoft Visual C++ Build Tools。 (因为pycocotools的主站点源码https://github.com/cocodataset/cocoapi默认只提供了源码,没有针对各平台编译好了的release,而且声称将来不支持Windows),这个不是简单安装个MS VC就行了(你会发现安装了还是报这个错),需要到这里下载visual cpp buildtools_full.exe来安装。
下载地址  https://go.microsoft.com/fwlink/?LinkId=691126

2. 确保安装编译环境完后,再执行python -m pip install pycocotools,结果还是报错,说invalid numeric argument '/Wno-cpp' : 

 

这是因为pip安装默认下载的源码是不支持Windows编译的,需要从一个让pycocotools PythonAPI支持使用Windows和Python3 来build的clone站点https://github.com/philferriere/cocoapi来安装,执行下面的命令:

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

 

结果很快就下载编译并安装成功了:

3. 若出现 error: Unable to find vcvarsall.bat

有可能是BuildTools_Full没有安装成功,请仔细检查!

参考链接:https://blog.csdn.net/xccccz/article/details/82725409

                 https://blog.csdn.net/a6822342/article/details/80841056

 

你可能感兴趣的:(在windows10上安装pycocotools)