linux更改默认python版本
Contents
大部分linux发行版默认的python版本为2.7,然而在使用时经常会遇到提示“DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won’t be maintained after that date. A future version of pip will drop support for Python 2.7.
”,而且python3的部分语法与python2不兼容,因此将python默认版本切换到python3.6是非常有必要的。
方法一 更改~/.bashrc
在~/.bashrc中添加一句
alias python=python3
或者
alias python='/usr/bin/python3'
后运行
|
|
即可(前提是已经安装了python3)
方法二 全局更改软链接
1.更改python
|
|
2.更改pip
|
|
再查看版本
|
|
此时版本已经切换到python3了