Windows下COCOAPI的安装

Requirement:Visual Studio 2015 +

1、下载源码,解压并进入该目录。源码地址:https://github.com/cocodataset/cocoapi

2、进入./PythonAPI, 编辑setup.py,去掉第12行extra_compile_args中前两个多余的参数

3、执行命令

python setup.py build_ext --inplace

python setup.py build_ext install

过程中可能会安装或升级依赖包,如果速度慢可以先中止命令手动安装好,再重启安装。

安装完成后的验证方法:进入python,import pycocotools看是否会报错。

 

Ref:

https://www.cnblogs.com/yihe/p/8467984.html

https://blog.csdn.net/mdjxy63/article/details/81146964?utm_source=blogxgwz2

你可能感兴趣的:(计算机视觉)