选择使用yum安装时要使用的python版本

时间:2014-01-03 19:18:48

标签: python linux centos yum

我的Linux VPS(CentOS)上有3个版本的Python。 2.6版是系统python。我想安装模块到python 2.7但运行以下命令只是安装到python 2.6。如何在此命令中指定python 2.7?

yum install python-devel

谢谢!

1 个答案:

答案 0 :(得分:2)

您可以使用“alternative”系统设置python的默认版本。尝试

>> /usr/sbin/alternatives --configure python

如果这没有效果,请尝试查找正在使用的python版本并相应地修改符号链接

>> which python

例如,如果结果是/ usr / local / bin / python,你想要使用的python版本是/usr/bin/python2.7那么

>> ln -sf /usr/bin/python2.7 /usr/local/bin/python