樹莓派多版本python設定預設python3
如果有的系統沒有自帶的3.4版本,需要安裝一下
sudo apt-get install python3
- 1
然後把python的連結刪掉
sudo rm /usr/bin/python
- 1
新建一個連結
sudo ln -s /usr/bin/python3.4 /usr/bin/python
- 1
檢視一下版本
python
- 1
顯示為:
Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.