ModuleNotFoundError: No module named 'pycocotools'解决办法

概要:

  • 由于缺少pycocotools包引发的错误,而pycocotools包需要cython和C编译器,所以在安装cython之前需要先安装Cython。

解决办法:

  • 安装cython
    pip install -U cython
  • Linux安装pycocotools
    pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI"
  • Windows安装pycocotools
    pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools^&subdirectory=PythonAPI"

     

posted @ 2020-04-22 13:38  DuanYongchun  阅读(16227)  评论(0编辑  收藏  举报