I'm trying to decode a QR Code and I'm using Python 3.7 on Mac OS Mojave.
I am trying to use pyzbar
but I always have a message :
ModuleNotFoundError: No module named 'pyzbar'
when I use in my script :
from pyzbar.pyzbar import decode
and also:
import pyzbar
Still, I downloaded zbar and also pyzbar with:
brew install zbar
pip3 install pyzbar
I do not know what I'm doing wrong. If anyone has the solution, thanks for the help.