Help needed: installation directory does not look right #16793
Replies: 1 comment 7 replies
-
pip (python package manager) never installs packages to such locations. It installs to current global / virtual environment.
Since 2022.1 release, OpenVINO package structure has changes.
Because you use wrong type of distribution. Use archive / debian package
While Ubuntu 22.04 is not explicitly mentioned in documentation, it's still supported. Binaries from Ubuntu 20.04 perfectly work on Ubuntu 22.04 |
Beta Was this translation helpful? Give feedback.
-
Hello!
Some information about the systems I am working with:
I ran the
pip install openvino-dev
command (as a superuser). After installation,mo - h
resulted in the Model Optimizer help menu being displayed and I was able toimport openvino
in Python3.The issue comes up when I check the installation directory which I expect to be default (
/opt/intel/openvino-2022
), but my/opt
directory is empty. Instead, if I rerun installation command I getRequirement already satisfied: openvino-dev in /usr/local/lib/python3.10/dist-packages (2022.3.0)
. That directory looks like this:I expect the installation directory to have a
deployment_tools
folder (to configure the Movidius MyriadX VPU as described in configuration guide) yet as you can see, it's not there. The above directory tree is only 2 levels deep, but there are files and other folders inside the ones shown, let me know if that would be helpful to have and I'll provide it.Overall, my question is why didn't the installation happen in the
/opt/intel
directory by default and why am I missing folder(s) that are mentioned in the guide?Any pointers or ideas are welcome. Thanks!
P.S. As I was typing this question, I discovered that Ubuntu 22.04 is not officially supported yet with OpenVINO toolkit, but can be installed with PyPI. If that is what causing my problems, is there any way to know whether Ubuntu 22.04 will be supported in the upcoming 2023.0 release? Is there an approximate timeline for 2023.0 release?
Beta Was this translation helpful? Give feedback.
All reactions