pip下载pycocotools提示
error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
即要我下载VC14,but我不想下几个G的软件
解决办法:
下载whl文件,链接Links for pycocotools-windows (tsinghua.edu.cn)
上面有好几个,不知道下哪个?
cmd输入pip debug --verbose,于是会显示pip支持的版本
于是我下了第一个对应的,即链接中的pycocotools_windows-2.0-cp37-cp37m-win_amd64.whl
然后,输入pip install pycocotools_windows-2.0-cp37-cp37m-win_amd64.whl
发现提示我路径中找不到此文件
于是我把下载的whl文件移到它提示的路径中
再 pip install pycocotools_windows-2.0-cp37-cp37m-win_amd64.whl
成功!