使用gpio的时候出现报错
gpio: command not found
解决方法:
wget https://project-downloads.drogon.net/wiringpi-latest.de
过 wget 工具下载一个名为 "wiringpi-latest.deb" 的 Debian 软件包。这个软件包是 WiringPi 库的安装包,WiringPi 是一个用于树莓派(Raspberry Pi)的 GPIO 控制库。
sudo dpkg -i wiringpi-latest.deb
?使用?dpkg
?工具来安装名为?wiringpi-latest.deb
?的软件包。
如果你的底层配置正常,这里你就完成了安装,但是如果出现下面的报错
dpkg: error processing package wiringpi:armhf (--install):
?dependency problems - leaving unconfigured
Processing triggers for man-db (2.11.2-2) ...
Errors were encountered while processing:
?wiringpi:armhf
?
它表明有一些依赖关系问题阻止了对该软件包的配置。具体来说,wiringpi:armhf
?依赖于?libc6
请按照下面的步骤处理
请注意,根据下面的步骤,结合自己的情况在完成后重新进行安装
1.补充libc6
sudo apt-get install libc6
如果出现报错
You might want to run 'apt --fix-broken install' to correct these. The following packages have unmet dependencies: wiringpi:armhf : Depends: libc6:armhf but it is not going to be installed E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
就说明遇到了依赖问题。具体来说,wiringpi软件包依赖于armhf版本的libc6,但系统无法找到该版本的libc6。
2.依赖问题
使用命令:
sudo apt --fix-broken install
进行自我依赖修复。然后回过头出现安装