在我预装了 python2.6 的 Fedora11 机器上,我能够使用以下步骤成功安装 python 2.7:
wget http://www.python.org/ftp/python/2.7/Python-2.7.tar.bz2
tar -xvjf Python-2.7.tar.bz2
cd Python*
./configure --prefix=/opt/python27
make
make install
vi ~/.bash_profile
## replaced PATH=$PATH:$HOME/bin
## with PATH=$PATH:$HOME/bin:/opt/python27/bin
## reload .bash_profile
source ~/.bash_profile
echo "/opt/python27/lib" > /etc/ld.so.conf.d/python27.conf
ldconfig
但是,当我通过终端(python -V)检查系统使用的python版本时,它仍然显示python 2.6。
如何让系统使用 python2.7 作为默认 python?或者如果可能的话,我将如何卸载python2.6?
提前致谢!