question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

ImportError: libjasper.so.1: cannot open shared object file: No such file or directory

See original GitHub issue

I tried to run the demoMamboVisionGUI.py but got this error msg.

ImportError: libcblas.so.3: cannot open shared object file: No such file or directory

then I managed to solved it by this command

pip3 install opencv-python

then I got another error when try to execute the demoMamboVisionGUI.py

ImportError: libcblas.so.3: cannot open shared object file: No such file or directory

then I solved it with this command

sudo apt-get install libatlas-base-dev

no I got another error ImportError: libjasper.so.1: cannot open shared object file: No such file or directory

How I can solve this problem? Any complete guide to install all dependencies ?

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:17 (3 by maintainers)

github_iconTop GitHub Comments

89reactions
mulysatestcommented, Apr 8, 2018

Finally I managed to solved all dependencies Here it is


pip3 install opencv-python
sudo apt-get install libatlas-base-dev
sudo apt-get install libjasper-dev
sudo apt-get install libqtgui4
sudo apt-get install python3-pyqt5
42reactions
neurohncommented, Jan 4, 2019

Finally I managed to solved all dependencies Here it is


pip3 install opencv-python
sudo apt-get install libatlas-base-dev
sudo apt-get install libjasper-dev
sudo apt-get install libqtgui4
sudo apt-get install python3-pyqt5

I needed one more step after this:

sudo apt-get install libqt4-test
Read more comments on GitHub >

github_iconTop Results From Across the Web

Importing openCV in python idle error: shared object file
I have been trying to use the cv2 library in python (in IDLE on raspberry pi 3) but I can't manage to import...
Read more >
cannot open shared object file: no such file or directory
ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in...
Read more >
import cv2时ImportError: libjasper.so.1: cannot open shared ...
可以更新软件包并安装正常运行所需的其他依赖项。 libmysqlclient.so.15: cannot open shared object file: No such file or directory.
Read more >
“libptf77blas.so.3: cannot open shared object file: No such file ...
Answers related to “libptf77blas.so.3: cannot open shared object file: No such file or directory”. ImportError: libGL.so.1: cannot open shared object file: ...
Read more >
FAQs - Xailient Docs
1. I'm getting "Connection Failed" error when running the SDK. ... "ImportError: libcblas.so.3: cannot open shared object file: No such file or directory"....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found