转载请注明:https://blog.csdn.net/chixia1785/article/details/80040172
windows下安装pycocotools包时,遇到了一大堆坑,这篇文章希望能让大家少走一点弯路
阅读mask R-cnn代码时,发现用COCO数据集训练需要用到pycocotools这个第三方库。尝试用pip安装,出错:
原来pycocotools作者压根就没考虑windows版本
本来已经死心,但还是点进链接,到github上看看其他人是怎么应对这个问题。惊喜的发现,原来已经大佬改写出了windows下的版本:
https://github.com/philferriere/cocoapi
按照教程,命令行输入pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI,安装成功
参考:
https://blog.csdn.net/gxiaoyaya/article/details/78363391
https://github.com/philferriere/cocoapi