换源操作:将树莓派国外默认的中间商,换成国内较近的中间商
输入命令:
sudo vi /etc/apt/sources.list
注释掉第一行中间商,换为 ”清华“ 或其他中间商
清华Raspbian 镜像:
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main non-free contrib
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main non-free contrib
stretch为Debian版本9,根据自己情况选择合适的Debian版本,清华大学树莓派镜像站
更新软件包
sudo apt-get update
树莓派python配置
安装python(有就不需要了):
sudo apt-get install python3 # 会安装默认版本python2
sudo apt-get install python3-pip # 安装python的第三方安装工具
更改python的默认版本为python3:
sudo rm /usr/bin/python # 删除默认的python链接
sudo ln -s /usr/bin/python3.5 /usr/bin/python # 新建python链接指向python3版本
给pip换个中间商:
临时换用:
pip install '安装么子名' -i https://pypi.tuna.tsinghua.edu.cn/simple
默认换用:清华大学pypi镜像
用VNC远程登陆树莓派
打开树莓派配置文件:
sudo raspi-config
选择5 Interfacing Options,按enter间进入;然后选择p3 VNC,按enter键进入;选择Yes—>OK—>Finish开启VNC
然后下载安装一个 VNC-Viewer 软件,安装完成后:
打开软件,点击左上角File,选择New connection,然后填写树莓派的IP地址,和自定义一个名字:
完成后会出现一个电脑图标,点开,输入树莓派用户和密码
恭喜完成VNC远程登陆