Tensorflow测试问题

时间:2019-01-10 22:09:37

标签: python tensorflow

我目前正在训练SSD模型,并且train.py运行正常。但是,在新标签页中启动test.py时,出现以下错误消息:

from pycocotools import coco
  

ModuleNotFoundError:没有名为“ pycocotools”的模块

我之前也有类似的错误,但是我认为我已经通过安装pycocotools(因此train.py运行)来解决了。

关于我在这里缺少什么的任何想法吗?

2 个答案:

答案 0 :(得分:1)

您使用的是python 3.x吗?

通常,如果您尝试通过pip2而非pip3安装软件包,则会发生类似情况。

运行pip3 install pycocotools应该可以解决问题。

如果您正在运行python 2.x,则应运行pip install pycocotools来解决问题。

答案 1 :(得分:1)

在Ubuntu上:

pip3 install pycocotools

在Windows上:

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