錯誤原因很簡單,就是缺少了pycocotools這個包,首先你需要pip install pycocotools,看少了什么包沒安裝,我這里少了Cython

於是我又安裝了Cython,然后再安裝pycocotools,就OK了

上面是在linux上面比較簡單,下面看window上面:
看這個博客https://blog.csdn.net/heiheiya/article/details/81128749
命令是:pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
以下安裝說明是錯誤的,我留這里只是為了記錄我尋找vc14的安裝過程:
安裝完Cython之后,直接安裝pip install pycocotools可能會報:
building 'pycocotools._mask' extension
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual
C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools

說明少vc14,這是python3.5和3.6會發生的事情,感興趣的可以先去https://wiki.python.org/moin/WindowsCompilers看看
不感興趣的直接下載https://visualstudio.microsoft.com/zh-hans/downloads/

