I am trying to install tensorflow
on jetson nano
. I have followed this document and have been able to install tensorflow.
>>> import tensorflow as tf
>>> tf.__version__
>>> '2.5.0'
I am now trying to install object-detection
api. For this I have cloned the repository https://github.com/tensorflow/models.git
and also installed the proto sudo apt-get install protobuf-compiler
and ran below commands
cd models/research
protoc object_detection/protos/*.proto --python_out=.
cp object_detection/packages/tf2/setup.py .
pip3 install setup.py
and getting error in installation of setup.py:
Error: Could not find a version that satisfies the requirement setup.py (from versions: none)
Error: No matching distribution found for setup.py
I am not able to understand why this error is coming. I am using python3.6
with 64bit version. Can anyone please provide some suggestions on how can I install object detection api for tensorflow