红联Linux门户
Linux帮助

Python问题解决-让python默认启用python2(ubuntu)

发布时间:2017-02-09 14:47:23来源:linux网站作者:騡儿
查看自己电脑里的所有Python,到/usr/bin/里查看.
我的是这样的:
Python问题解决-让python默认启用python2(ubuntu)
 
可以看到我的ubuntu里即装了python2又装了python3
 
而我系统默认python使用python3
alias python='/usr/bin/python2'
 
上述命令可以暂时改变pyhton命令的启用,即启用python2,但是终端退出又会变回来.
 
将该命令写入环境变量文件中即可
echo 'alias python=/usr/bin/python2' >>./bashrc
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28285.html