I'm trying to install the Tensorflow Object Detection API, following several tutorials and the official documentation (Tensorflow Object Detection API). I've encountered multiple times the same error when running through the command prompt the following command:
>cp object detection/packages/tf2/setup.py .
'cp' is not recognized as an internal or external command, operable program or batch file.
Any help would be appreciated. I've also tried using "copy" instead of "cp" but no result.
P.S. I've installed GPU support as well.
cp
won't work on command prompt. Try running it on powershell as
cp '.\object detection\packages\tf2\setup.py' .