如何卸载Python2.6

前端之家收集整理的这篇文章主要介绍了如何卸载Python2.6前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在我预装了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版本时,系统使用via终端(python -V),它仍然显示python 2.6.

我如何使系统使用python2.7作为其默认的python?
或者如果可能的话,我将如何卸载python2.6?

提前致谢!

最佳答案
卸载系统Python是个坏主意.还有许多依赖它的软件包和软件.通过修改$PATH或创建别名来使用python2.7会更好. python2.7指向您在/ opt目录中安装的python.
原文链接:https://www.f2er.com/linux/440145.html

猜你在找的Linux相关文章