树莓派切换python版本为python3

没有python3的话,先安装python3、

sudo apt-get install python3

把py2删掉

sudo rm /usr/bin/python

链接py3,注:python3.4这里要换成对应你的python版本

sudo ln -s /usr/bin/python3.4 /usr/bin/python

查看现在的版本号

python

猜你喜欢

转载自blog.csdn.net/qq_40584960/article/details/86081779