我不是 Linux 机器的 super 用户。目前它有 2 个版本的 Python。
当我调用标准 python
命令时,它给出了 2.6 版
$ python
[neversaint@mach71 ~]$ python
Python 2.6.2 (r262:71600, Jan 28 2011, 13:47:39)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
$ which python
/opt/somedir/bin/python
只有当我使用 python2.7
调用时,它才会给出版本 2.7
[neversaint@mach71 ~]$ python2.7
Python 2.7.6 (default, Nov 11 2013, 13:13:15)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
$ which phython2.7
/usr/bin/python2.7
我的问题是如何设置它,以便每当我调用 $ python
时它都会给我版本 2.7。
您可以将其链接到您的用户和您的 $PATH
中的某个目录中.例如,如果 /home/<your-username>/local/bin
在你的$PATH
那么你可以做
ln -s /usr/bin/python2.7 /home/<your-username>/local/bin/python
在这个例子中 /home/<your-username>/local/bin
应该在 /usr/bin
之前在您的路径中.如果您的 $PATH
中没有这样的条目你可以在那里添加它:
export PATH=$HOME/local/bin:$PATH
您也可以将此行添加到 .bashrc
或类似于在 shell 启动时激活它。
我是一名优秀的程序员,十分优秀!