Getting openvino open source 2022/1.1 to work on Ubuntu 22.04 #18127
Replies: 2 comments 1 reply
-
Maybe this will help. I've gotten OpenVINO 2022.2 working on Ubuntu 22.04. Following (somewhat) the guide from here to install runtime, then
|
Beta Was this translation helpful? Give feedback.
-
Thanks berrylizard, Your info will be really useful. I had literally just started down the same path by cloning a fresh copy of the repo and checking out the releases/2202/3 branch. I have just checked and the build of openvino has finished succesfully. I will now follow your instructions for the dev toolkit. Roger |
Beta Was this translation helpful? Give feedback.
-
I am trying to get openvino 2022/1.1 to work on Ubuntu 22.0 and talk to my NCS2 stick I have run into a problem. This is where I have got to so far.
`@@ -57,7 +57,7 @@ size_t bfloat16::size() const {
}
bfloat16::operator float() const {
const float* f = reinterpret_cast<const float*>(&tmp);
return *f;
}`
`@@ -33,7 +33,7 @@ endforeach()
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.bdist_wheel ; print(f'{wheel.bdist_wheel.get_abi_tag()}')" OUTPUT_VARIABLE PYTHON_ABI)
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.vendored.packaging.tags as tags ; print(f'{tags.interpreter_name()}{tags.interpreter_version()}')" OUTPUT_VARIABLE INTERPRETER)
-execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.vendored.packaging.tags as tags ; print(f'{next(tags._platform_tags())}')" OUTPUT_VARIABLE WHEEL_PLATFORM)
+execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.vendored.packaging.tags as tags ; print(f'{next(tags.platform_tags())}')" OUTPUT_VARIABLE WHEEL_PLATFORM)
string(STRIP ${PYTHON_ABI} PYTHON_ABI)
string(STRIP ${INTERPRETER} INTERPRETER)
string(STRIP ${WHEEL_PLATFORM} WHEEL_PLATFORM)
`
`Python 3.10.6 (main, May 29 2023, 11:10:38) [GCC 11.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
`
Numpy strikes again.
Has anyone been down this path before?
Has anyone got any ideas on how to get past with minimal intervention in the source?
Help!
Roger
Beta Was this translation helpful? Give feedback.
All reactions