安装pycocotools报无效的数值参数“/Wno-cpp”错误

Posted tiandsp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装pycocotools报无效的数值参数“/Wno-cpp”错误相关的知识,希望对你有一定的参考价值。

win7 sp1 + vs2019环境下执行pip install ‘git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI‘报出

cl: 命令行 error D8021 :无效的数值参数“/Wno-cpp”

错误。

解决方法:

首先执行

git clone https://github.com/cocodataset/cocoapi.git

然后cd到PythonAPI目录下。

修改setup.py文件。

将
extra_compile_args=[-Wno-cpp, -Wno-unused-function, -std=c99],
改为
extra_compile_args=[-std=c99],

保存后执行

python setup.py build_ext --inplace
python setup.py build_ext install

以上是关于安装pycocotools报无效的数值参数“/Wno-cpp”错误的主要内容,如果未能解决你的问题,请参考以下文章

Bug解决Win10安装pycocotools报错

Windows上安装 pycocotools 失败:ERROR: Failed building wheel for pycocotools

windows安装pycocotools

windows安装pycocotools

Windows10安装pycocotools方法,亲测可用!

pycocotools安装