pybluez installation errors on Mac OS

前端 未结 2 1760
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-20 14:48

I tried to install pybluez using following commands.

pip install pybluez

sudo easy_install pybluez

But for both commands I en

2条回答
  •  情话喂你
    2021-02-20 15:12

    It appears that the releases on PyPI are very outdated, but using the latest from the GitHub repository works perfectly.

    Shell / Command Line

    $ pip install git+https://github.com/pybluez/pybluez.git
    

    requirements.txt

    git+https://github.com/pybluez/pybluez.git
    

    My Environment

    • 2018 MacBook Pro
    • Python 3.7.4
    • MacOS Mojave (10.14.6)

提交回复
热议问题