TensorFlow model例項錯誤記錄1
阿新 • • 發佈:2018-12-13
在測試TensorFlow model例項的時候出現錯誤:
1, pycocotools缺失
pip install pycocotools
出現 error: Microsoft Visual C++ 14.0 is required. 嘗試下載Microsoft Visual C++等檔案,安裝後仍然不成功,出現錯誤:
cl : Command line error D8021 : invalid numeric argument '/Wno-cpp'
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with exit status 2
解決辦法:
下載cocoapi :https://github.com/cocodataset/cocoapi
將cocoapi-master\PythonAPI中的setup.py中的第12行
extra_compile_args=['-Wno-cpp', '-Wno-unused-function', '-std=c99']
改為
extra_compile_args={'gcc': ['/Qstd=c99']}
然後執行 python setup.py build_ext --inplace
將編譯好的pycocotools目錄 拷到python的庫目錄C:\Anaconda3\Lib\site-packages\pycocotools即可
參考:https://github.com/cocodataset/cocoapi/issues/51