不同操作系统安装GPIO的命令是不同的,这里以树莓派的官方操作系统Raspbian为例,说明如何安装GPIO库。
Raspbian中安装了两个Python版本,分别是2.7.3和3.2.2。Python2.x的安装包会一python为前缀,而Python3.x的安装包回忆python3为前缀。
Python2安装GPIO库需要输入命令:
sudo apt-get install python-rpi.gpio
Python3安装GPIO库需要输入命令:
sudo apt-get install python3-rpi.gpio
Raspberry Pi要看你使用的系统的版本。
Rasbian是基于Debian的系统,用apt来安装
sudo apt-get install python27 lib-gpio
我知道的还有一个Arch Linux for Raspberry Pi,那个没记错应该是pacman
pacman install python27
其余的raspberry pi的系统你要去看它是基于什么系统制作的,然后用那个系统的安装包管理软件来安装
不是很建议直接在Raspberry Pi直接编译,ARM的SoC性能真心很弱,编译Python可能要好几个小时
pip3 install (--user) rpi.gpio