在我的Fedora11机已python2.6的上预装,我能够使用以下步骤成功安装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
然而,当我通过终端(蟒-V)检查系统使用Python版本,它仍然显示蟒2.6。
我将如何使系统使用python2.7作为其默认的Python? 或者,如果可能的话,我将如何卸载python2.6的?
提前致谢!