之前在ubuntu上安装pycocotools极其方便,今天尝试在window是上跑一下 detectron2项目,发现需要安装pycocotools,安装方法如下:
(https://github.com/cocodataset/cocoapi)
解压之后,拷贝到python安装路径下的 site-packages文件夹中并 cmd到\PythonAPI目录下,执行如下两个脚本:
#install pycocotools locally (先这一条,结束后再下一条)
python setup.py build_ext --inplace
#install pycocotools to the Python site-packages
python setup.py build_ext install