我正在使用 python 版本 2.4.3 的 centOS 5 Server 上工作
现在我安装了python 2.5(从SF获取命令)关联作为
wget http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tgz
tar fxz Python-2.5.2.tgz
cd Python-2.5.2
./configure
make
make altinstall
然后我执行命令 python -V 它说
Python 2.4.3
然后我尝试使用命令将其从这个更改为 2.5,因为我的文件中存在语法错误,因为 python 版本较低。
python_select python-2.5.2
但它说
-bash: python_select: command not found
谁能帮我改变它以便我可以执行我的.py 文件。
任何帮助都将受到高度赞赏。
答案1
使用绝对路径:
/usr/local/bin/python2.5 /path/to/your/script
答案2
我写
#!/usr/bin/env python2.5
from __future__ import with_statement
在我的 python 文件上,它就采用此路径执行,因为之前已经设置了路径。谢谢帮助 :)