发布时间:2022-12-04 13:00
很多深度学习项目会用到Pycocotools
一般直接在conda环境下运行
pip install pycocotools
在Windows下直接运行该命令可能出现如下报错提示
error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools"
提示需要 Microsoft Visual C++ 14.0
下面给出三种解决方案
pip install pycocotools -i https://mirrors.aliyun.com/pypi/simple/
发现用阿里的镜像源安装不会出现报错 可以正常安装
安装 Visual C++ 2015 build tools
点击以下链接
GitHub - philferriere/cocoapi: Clone of COCO API - Dataset @ http://cocodataset.org/ - with changes to support Windows build and python3
点击 “here” 下载
或者直接点击 Visual C++ 2015 build tools 下载链接
点击安装
(有可能失败 网络原因或者提示安装包丢失或者损坏)
笔者在一台电脑上安装成功了 另一台电脑就安装失败了= =
如果安装成功后再运行
pip install pycocotools
Pycocotools安装成功
安装 Visual Studio 2019 以下内容