如果没有root访问权限,如何为我的特定用户将默认Python从3.5更改为2.7?想知道如何使用Python 2运行Python脚本。
如果我通过简单地运行python
来启动Python,那么它运行3.5.2。我必须在终端提示符下专门运行python2
才能获得python2版本。
如果我运行which python
,则返回/data/apps/anaconda3/bin/python
,我相信Python 2.7在/usr/bin/python
下。
这是在CentOS上,如果这有助于澄清任何事情
答案 0 :(得分:1)
您可以添加
alias python=python2.7
到主文件夹中的.bashrc文件
答案 1 :(得分:0)
If you are looking to change the python interpreter in anaconda from 3.5 to 2.7 for the user, try the command conda install python=2.7