Python无法检测库

时间:2018-08-20 14:28:42

标签: python

我正在建立与google tensorflow API类似的模型。我只想开始训练模型,所以我加入了这行代码。

    python train.py --logtostderr --train_dir=training/ --pipeline_config_path=training/faster_rcnn_inception_resnet_v2_atrous_coco.config

我正在按照sentdex教程来培训自定义对象检测器。执行此行时,出现以下错误。

    File "train.py", line 49, in <module>
 from object_detection.builders import dataset_builder
    File "C:\Program Files\Python36\lib\site-packages\object_detection-0.1- py3.6.egg\object_detection\builders\dataset_builder.py", line 27, in <module>
 from object_detection.data_decoders import tf_example_decoder
    File "C:\Program Files\Python36\lib\site-packages\object_detection-0.1-py3.6.egg\object_detection\data_decoders\tf_example_decoder.py", line 27, in <module>
 from object_detection.protos import input_reader_pb2
     ImportError: cannot import name 'input_reader_pb2'

Sentdex遇到类似的错误,并且在运行此代码后

    export PYTHONPATH=$PYTHONPATH:`pwd`:`pwd`/slim

一切都很好。当我尝试运行它时,出现以下错误

'export' is not recognized as an internal or external command,operable program or batch file.

我将export更改为set并编译了代码,但仍然给我一个错误。我尝试将Python拥有的所有内容添加到PATH中,但仍然给我同样的错误。问题不在PATH中,我在其他任何地方都找不到解决方案,因此请有人帮忙。

0 个答案:

没有答案