ubuntu18升级python3版本到3.8以上
ubuntu怎么安装python
图⽚.png
1.安装依赖包
apt update
apt install software -properties -common
2.安装python
3.8
apt install python3.8
图⽚.png
3.配置python3.8为系统默认python3
which python3.8 这⾥理应到python3.8的位置,但是不知道为啥没反应。。。。后⾯我安装好之后有能到了。
图⽚.png
这⾥安装好应该是在/usr/bin/⽬录下的。
然后将该版本添加到update-alternatives
update-alternatives --install /usr/bin/python3 /usr/bin/python3.8 1
这⾥应该是给3.8版本加到系统的默认选项中,原⽂是把各个版本都添加到了,然后选择3.8这个版本,这⾥我只添加了3.8版本,所以这个选项到时候只有⼀个。
开始选了
update-alternatives --config python3
图⽚.png
就是这样⼦了,升级到了3.8版本。
可以which了
图⽚.png
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论