-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] MacOS OpenVINO built, what next (and more)? #17766
Comments
In case the error generated by
|
I think I've found a way forward.
Is this how this was intended? |
Looks like I spoke too soon. Whilst the download worked, none of the following steps did:
|
Answering your questions:
There are 2 steps to obtain the omz_downloader tool:
Option 1: Install using PyPI and you'll get a working OV with the tools required. You'll need to build OMZ from source afterward, if you need to use OV samples. Option 2: Install OV from source, compile & build required files. Then, do the same for OMZ. Note that, the omz_downloader tool does not automatically available once you built the OV from src. This is what I did to install OMZ tool from source You may refer to this Official Documentation to explore the available ways to get OpenVINO running in your env. |
Closing issue, feel free to re-open or start a new issue if additional assistance is needed. |
I tried to asked this question in the Intel forum (that is referenced in the documentation), but it mangled my question text and then flagged it as spam. (https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/MacOS-OpenVINO-built-what-next-and-more/m-p/1490656)
[MacBook Pro 2014, MacOS 13.3.1, OpenVINO
master
, OpenCV 4.7.0]With an abstract understanding of deep learning and several of it's sub-fields and a NCS2, I now would like to tinker. So, I followed the OpenVINO build instructions for Intel MacOS (
master
branch) all the way up to step #4, and everything built/installed fine.With OpenVINO installed on my computer (in
/usr/local/OpenVINO
) and my NCS2 plugged into my USB port, I believe I have everything needed to start using OpenVINO. Thus I created my working folder with a virtualenv and decided to try theHello Classification
sample.Looking at the
Hello Classification C++ Sample
documentation page, it suggests to download thegooglenet-v1
model. When I tried to do that, theomz_downloader
script was not found. When I looked around my filesystem, I could not find the script in my OpenVINO install location but I did find it in the openvino workspace I cloned from github, under./build/tools/openvino_dev/build/usr/local/bin/
. However, when I runomz_downloader
directly from that location, I got an errorimportlib.metadata.PackageNotFoundError: No package metadata was found for omz-tools
.Prior to the model download step, the
Hello Classification C++ Sample
documentation page says to installopenvino-dev[caffe]
, but I was reluctant to do this since I had just built everything and, to my mind, already haveomz-tools
. Whilst composing this question, I decided to try installingpip install openvino-dev
anyway (python -m pip install openvino-dev[caffe]
returned an error), thinking that maybe it would only download/install this particular part and any other dependencies that are needed. But, to my surprise, pip started installing openvino_dev-2022.3.0-9052-py3-none-any.whl. Sadly, this install failed! So now I seem to have two versions of OpenVINO on my system; the nightly I built and a broken 2022.3.0.I then attempted to install
omz-tools
itself, but pip complained:So, now I have several questions:
openvino-dev
?omz_downloader
that I already have to work? Do I need to install, clone, build anything else?The text was updated successfully, but these errors were encountered: