如何在Google Colab中获取Prototxt?

时间:2020-11-03 17:04:03

标签: python google-colaboratory

我将其用于图像的口罩检测测试。

!pip install ProtoText
Collecting ProtoText
  Using cached https://files.pythonhosted.org/packages/72/50/306035a7314df99686177e16e4f197bf310b1bcabdce7f7d8671342ca4b0/ProtoText-0.3.5.tar.gz
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

1 个答案:

答案 0 :(得分:1)

您使用的ProtoText模块与https://github.com/XericZephyr/prototext相关联。

没有明确提及,但我发现此模块适用于python2。 默认情况下,Google colaboratory提供python3,而google colaboratory不推荐使用python2。 虽然您可以使用此链接在google colaboratory中使用python2

https://colab.research.google.com/notebook#create=true&language=python2

您可以使用!python --version来检查版本,然后使用!pip install ProtoText

应该可以