How can I solve this `ImportError: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory`?
This error happens everytime when I want to run the app:
Traceback (most recent call last):
File "app/face_detection_openvino.py", line 28, in
I ran the program in python 3.6 and python 3.7?
You can specify your python_version, when you run setupvars.sh.
l solved by simply running the setupvars.sh file using python3.5 version instead of 3.6. source /opt/intel/openvino/bin/setupvars.sh -pyver 3.5
Simply apt install python3.7-dev and it should work.
The problem is that the .so library of python is missing form the environment - this is not OpenVino specific. This has nothing to do with setupvars.sh.