Windows10安装pycocotools用于faster-Rcnn 多方法试错后可用

windows下安装pycocotools包时,遇到了一大堆坑,主要原因是安装时需要梯子 国内不好下载。直接运行
pip install pycocotools
报错
然后根据别人经验 使用github源码安装

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

因为网络原因一直有ERROR: Command errored out with exit status 128: git clone -q https://github.com/philferriere/cocoapi.git ‘C:\Users\ADMINI~1\AppData\Local\Temp\pip-req-build-b3om09ir’ Check the logs for full command output.的报错
Command errored out with exit status 128: git clone -q https://github.com/philferriere/cocoapi.git 'C:\Users\ADMINI~1\AppData\Local\Temp\pip-req-build-b3om09ir' Check the logs for full command output.的报错在这里插入图片描述
接下来是可行解决方法:
一、从 https://github.com/pdollar/coco.git 这个网址下载源码(直接把压缩包下下来),解压到本地(按理来说哪儿都可以,但是既然能遇到这种问题,说明还是懂中文路径不友好的,所以放到英文路径下,个人建议为了方便管理和记忆,放到python安装目录或者anaconda安装目录下的文件夹,比如Tools文件夹,把这玩意儿放里边儿);
Windows10安装pycocotools用于faster-Rcnn 多方法试错后可用_第1张图片
二、进入cocoapi-master/PythonAPI文件夹,在此处打开Powershell窗口(shift+鼠标右键,就能看到了),运行命令:python setup.py build_ext --inplace
如果运行不报错更好,报错的话如果是cl: 命令行 error D8021 :无效的数值参数“/Wno-cpp” 和 cl: 命令行 error D8021 :无效的数值参数“/Wno-unused-function”,不用担心,打开上面的setup.py文件,直接删除这两个参数就可以。
然后再运行上面的命令,就没问题了。

三.上一步没问题,则继续在Powershell窗口运行命令:python setup.py build_ext install
Windows10安装pycocotools用于faster-Rcnn 多方法试错后可用_第2张图片
这就是安装成功了

你可能感兴趣的:(fasterrcnn)