I am trying to run an Arducam MT9J001 camera on a raspberry pi 3b+. I am getting the following error when I try to run the program, “ImportError: libcblas.so3: cannot open shared object file: No such file or directory.” I have the computer vision software downloaded onto the raspberry pi, though it seems that it is still not working. I’m not sure what other information is viable to this project, but if there is something else I should be specifying please let me know.
Advertisement
Answer
What worked for me (I was missing some dependencies):
JavaScript
x
9
1
pip3 install opencv-python
2
sudo apt-get install libcblas-dev
3
sudo apt-get install libhdf5-dev
4
sudo apt-get install libhdf5-serial-dev
5
sudo apt-get install libatlas-base-dev
6
sudo apt-get install libjasper-dev
7
sudo apt-get install libqtgui4
8
sudo apt-get install libqt4-test
9