1

When I install a package through pip3 (on my Mac) it is successfully installed however when I try importing it calls an error. How do I fix this for python3?

I have tried multiple libraries and all are the same. However using pip and installing the same packages for python2 it works

pip3 install pyzbar

In Python 3:

import pyzbar
ModuleNotFound Error
liamdiprose
  • 433
  • 5
  • 14
Jack Adee
  • 73
  • 1
  • 1
  • 6
  • 2
    Have you tried `pip check pyzbar`? Or perhaps what you want to do is `python3 -m pip install pyzbar` – mrfr Jul 30 '19 at 07:31
  • Does this answer your question? [pip installs packages successfully, but executables not found from command line](https://stackoverflow.com/questions/35898734/pip-installs-packages-successfully-but-executables-not-found-from-command-line) – Aryéh Radlé Jul 22 '20 at 08:03

0 Answers0