ERROR: Directory '.' is not installable. Neither 'setup.py' nor 'pyproject.toml' found

ERROR: Directory '.' is not installable. Neither 'setup.py' nor 'pyproject.toml' found

我正在尝试 运行 下面的文件 https://colab.research.google.com/github/tensorflow/models/blob/master/research/object_detection/colab_tutorials/object_detection_tutorial.ipynb

当尝试 运行 下面的命令时,出现错误 点安装。 错误:目录“。”不可安装。 'setup.py' 和 'pyproject.toml' 均未找到。

我当前的位置是/content/models/research。

如有指点,将不胜感激。

我根据一篇关于 Installing Tensorflow Object Detection 的文章添加了下面的 CP 行,它解决了这个问题。基本上它复制 setup.py 所以 pip 可以找到它。

%%bash 
cd models/research
cp object_detection/packages/tf2/setup.py .
pip install . --upgrade