Window10 安装cocoapi(tensorflow models zoo)

Window10 安装cocoapi(tensorflow models zoo)_第1张图片

下载cocoapi-master解压到硬盘中。

Window10 安装cocoapi(tensorflow models zoo)_第2张图片

进入到PythonAPI文件夹,输入python setup.py install  或者以下安装命令

pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI

Window10 安装cocoapi(tensorflow models zoo)_第3张图片

1、 error: [WinError 3] 系统找不到指定的路径。: 'D:\\WorkSoft\\Microsoft Visual Studio 14.0\\VC\\PlatformSDK\\lib'

       参考:https://www.cnblogs.com/bigtreei/p/9914589.html

重新安装VS2015,由于没有安装完整。

Window10 安装cocoapi(tensorflow models zoo)_第4张图片

2、无效的数值参数“/Wno-cpp”

pycocotools没有考虑window版本的安装,下载一个window版本的:https://github.com/philferriere/cocoapi

Window10 安装cocoapi(tensorflow models zoo)_第5张图片

3、安装成功

Window10 安装cocoapi(tensorflow models zoo)_第6张图片

完成cocoapi的安装。安装成功,可以看在python的三方lib中(路径通常在lib\site-packages)看到pycocotools(红色实线部分) 

Window10 安装cocoapi(tensorflow models zoo)_第7张图片

问题描述
在运行带Cython模块的py文件时,有可能输出如下报错信息:error: Unable to find vcvarsall.bat
在网上查找了大量资料,发现大多数解决方案都要求安装Visual Studio。有没有无需安装VS的解决方案呢?这里提供一种方法。解决方案
安装anaconda。Anaconda强大的包管理和环境管理可以帮助我们节省大量时间与精力,让我们能更专注于代码,而不是把精力花在各种莫名其妙的环境或依赖问题上。
在anaconda的命令行中输入命令:conda install libpython
 

 

你可能感兴趣的:(【AI入门】)