Closed eddie-LA closed 5 months ago
Current version of the documentation states to use the following command to build the Model API package:
python <omz_dir>/demos/common/python/setup.py bdist_wheel
This results in the following error:
error: invalid command 'bdist_wheel'
Package version used: Python version 3.11.9 (in venv) build==1.2.1 setuptools==70.0.0 wheel==0.43.0
bdist_wheel is deprecated. Change the build commands in the documentation.
bdist_wheel
What worked for me:
pip wheel <omz_dir>/demos/common/python
This command build the package and fetches any required dependencies with the local folder as an output.
Issue
Current version of the documentation states to use the following command to build the Model API package:
This results in the following error:
Package version used: Python version 3.11.9 (in venv) build==1.2.1 setuptools==70.0.0 wheel==0.43.0
Proposal
bdist_wheel
is deprecated. Change the build commands in the documentation.What worked for me:
This command build the package and fetches any required dependencies with the local folder as an output.