I am trying to setup tensorflow object detection, and I'm following this video.The video refers to this website.
I have successfully cloned Tensorflow Garden and Coco API
I have also successfully installed ProtoBuff and added it to the path.
For Object_detection API,the website says to run cp object_detection/packages/tf2/setup.py .
and python -m pip install .
But when I run python -m pip install .
, I get the following error
_DeprecatedConfig: Deprecated config in `setup.cfg`
!!
********************************************************************************
The license_file parameter is deprecated, use license_files instead.
By 2023-Oct-30, you need to update your project and remove deprecated calls
or your builds will no longer be supported.
See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.
********************************************************************************
!!
What should I do ? I am new to this.