'(MacBook M1):raise ImportError('Unable to find zbar shared library') ImportError: Unable to find zbar shared library

Mac OS X :

brew install zbar 

Install this Python wrapper; use the second form to install dependencies of the command-line scripts:

pip install pyzbar

I tried these steps but i'm still getting the bellow error

File "/Users/something/opt/anaconda3/envs/muenv/lib/python3.8/site-packages/pyzbar/wrapper.py", line 136, in zbar_function
    return prototype((fname, load_libzbar()))
  File "/Users/something/opt/anaconda3/envs/muenv/lib/python3.8/site-packages/pyzbar/wrapper.py", line 115, in load_libzbar
    libzbar, dependencies = zbar_library.load()
  File "/Users/something/opt/anaconda3/envs/muenv/lib/python3.8/site-packages/pyzbar/zbar_library.py", line 65, in load
    raise ImportError('Unable to find zbar shared library')
ImportError: Unable to find zbar shared library


Solution 1:[1]

This worked for me. Have a try.

mkdir ~/lib
ln -s $(brew --prefix zbar)/lib/libzbar.dylib ~/lib/libzbar.dylib

From https://stackoverflow.com/a/71904987/14882853

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Carl.King