树莓派其他应用安装

python卸载与安装

卸载:
1、卸载python3.4

1
sudo apt-get remove python3.4

2、卸载python3.4及其依赖

1
sudo apt-get remove --auto-remove python3.4

3、清除python3.4

1
2
3
sudo apt-get purge python3.4
or
sudo apt-get purge --auto-remove python3.4

安装:
下载python

1
2
wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz
wget -P /usr/lib https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz(下载文件到指定目录)

解压、编译安装

1
2
3
4
5
tar -zxvf Python-2.7.9.tgz
cd Python-2.7.9
./configure --prefix=/usr/local/python-2.7.9
make
make install

系统自带了python版本,我们需要为新安装的版本添加一个软链

1
ln -s /usr/local/python-2.7.9/bin/python /usr/bin/python2.7.9

远程桌面安装

1
sudo apt-get install xrdp

默认端口:3389
安装完成后可以使用windows的远程桌面访问

安装docker-compose

1
sudo apt install docker-compose

安装nginx

1
sudo apt-get install nginx

树莓派查看cpu温度

1
vcgencmd measure_temp