Can't install zbar

前端 未结 4 941
无人及你
无人及你 2020-12-18 05:17

I am trying to use the qrtools module with Python 3.4.2 on my Raspberry Pi 2, however it cannot run as I don\'t have the zbar module installed. Trying

相关标签:
4条回答
  • 2020-12-18 05:49

    Bumping @herve solution

    On ubuntu and on Mint

    sudo apt-get install python-zbar libzbar-dev python-qrtools

    pip install libzbar-cffi==0.2.1

    0 讨论(0)
  • 2020-12-18 05:52

    Try the following code after entering sudo mode: yum install zbar-devel This should work for fedora.

    0 讨论(0)
  • 2020-12-18 05:53

    assuming you're using a debian derivative (like ubuntu), you need to install zbar's developement package, which contains the header file zbar.h

    $ sudo apt-get install libzbar-dev
    

    for redhat/fedora systems:

    $ sudo yum install zbar-devel
    

    and probably python's dev package too:

    $ sudo apt-get install python3-dev
    
    0 讨论(0)
  • 2020-12-18 05:56

    or you can use pip install zbar-py https://pypi.org/project/zbar-py/

    0 讨论(0)
提交回复
热议问题