Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.
6392 Discussions

Conda Package for OpenVINO Inference Engine not working

Aditya_H_Intel
Employee
1,014 Views

I recently tried using OpenVINO inference engine conda package to run a application. But this is not working as expected. I am not able to import  IENetwork or IEPlugin libraries.

How to use this package? If there is any documentation on it, where can I get that? 

 

My Env:

OS: Ubuntu 18.04,Conda: miniconda3 and Base env, Python Version : 3.7.4

Conda install command: conda install -c openvino openvino-ie4py

Packages installed: openvino-ie4py, openvino-ie

 

Output and Error Msg:

>>> 
>>> 
>>> import openvino
>>> 
>>> 
>>> from openvino.inference_engine import IENetwork
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/controller/miniconda3/lib/python3.7/openvino/inference_engine/__init__.py", line 1, in <module>
    from .ie_api import *
ImportError: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory
>>> from openvino.inference_engine import IEPlugin
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/controller/miniconda3/lib/python3.7/openvino/inference_engine/__init__.py", line 1, in <module>
    from .ie_api import *
ImportError: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory
>>> 
 

 

0 Kudos
2 Replies
Stewart_C_Intel
Employee
1,014 Views

Have you installed the OpenVINO toolkit itself, from here?  https://software.intel.com/en-us/openvino-toolkit/choose-download/free-download-linux

 This has python examples installed as part of the sample code.

0 Kudos
Aditya_H_Intel
Employee
1,014 Views

No, I am already aware of Installing OpenVINO from the mentioned link. I just want to use the OpenVINO Inference Engine from the Conda package. 

0 Kudos
Reply