gpt4 book ai didi

python-3.x - Adafruit 树莓派 neopixel 库抛出错误 "ImportError: No module named _rpi_ws281x"

转载 作者:行者123 更新时间:2023-12-04 14:22:16 52 4
gpt4 key购买 nike

我在遵循 Adafruit Neopixel 教程时遇到了这个问题: https://learn.adafruit.com/neopixels-on-raspberry-pi/python-usage

我仔细检查了是否安装了所有要求,但仍然出现错误:

ImportError: No module named _rpi_ws281x

我花了很长时间才将解决方案拼凑在一起,这就是我想在这里记录它的原因。请参阅下面的答案。

最佳答案

解决方案是从源代码重建并重新安装 rpi_ws281x 库(如各种 github 问题中所建议的,例如 https://github.com/jgarff/rpi_ws281x/issues/225)

让我们来看看这个:

我假设您遵循了 Adafruit Neopixel 教程并安装了所有相关的 python3 东西,尤其是安装工具。

我们需要在您的 pi 上安装一些额外的依赖项来构建库。

sudo apt-get install python-dev git scons swig

克隆 rpi_ws281x 存储库

git clone https://github.com/jgarff/rpi_ws281x.git

进入rpi_ws281x目录

cd rpi_ws281x

接下来让我们构建C库

sudo scons

现在切换到库的 python 目录

cd python

构建python模块(记得使用python3)

sudo python3 setup.py build

并安装它

sudo python3 setup.py install

就是这样!错误应该消失了。

关于python-3.x - Adafruit 树莓派 neopixel 库抛出错误 "ImportError: No module named _rpi_ws281x",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53045343/

52 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com