修改unbuntu系统默认python版本(不建议使用)

[client]
default-character-set=utf8
[mysql]
default-character-set=utf8
[mysqld]
character-set-server=utf8系统一般默认版本是python2.7

安装python3.4
debian7源上最新的就是py3.2版本,debian8和ubuntu14上面最新的是py3.4

apt-get install python3.4

以下是修改系统默认python版本的方法,建议不使用这种方法,因为很多软件需要py2.7支持,修改了默认库就无法安装了。
比如supervisor更改默认python版本后就无法安装了。

修改unbuntu系统默认python版本(不建议使用)_第1张图片
Paste_Image.png

必须修改为2.7版本才能安装成功。
恢复方法:

rm /usr/bin/python
ln /usr/bin/python2.7 /usr/bin/python

或者

update-alternatives --config python

选2.7版本对应的数字。
然后再安装supervisor

修改unbuntu系统默认python版本(不建议使用)_第2张图片
Paste_Image.png

成功。

多版本python建议使用virtualenv,这样就不用管系统中默认是什么版本了,只要虚拟环境中是对应python3版本就行了。

修改unbuntu系统默认python版本(不建议使用)_第3张图片
Paste_Image.png

=========以下是正文=====================================================

update-alternatives是ubuntu系统中专门维护系统命令链接符的工具,通过它可以很方便的设置系统默认使用哪个命令、哪个软件版本。和ln一样的效果。
如果是其他linux版本,只能使用rm和ln这样操作:

rm /usr/bin/python
ln /usr/bin/python3.4 /usr/bin/python

在ubuntu我们就使用 update-alternatives 来为整个系统更改 Python 版本。以 root 身份登录,首先罗列出所有可用的 python 替代版本信息:

update-alternatives --list python

update-alternatives: error: no alternatives for python


Paste_Image.png

如果出现以上所示的错误信息,则表示 Python 的替代版本尚未被 update-alternatives 命令识别。想解决这个问题,我们需要更新一下替代列表,将 python2.7 和 python3.4 放入其中。

update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
update-alternatives --install /usr/bin/python python /usr/bin/python3.4 2
Paste_Image.png

--install 选项使用了多个参数用于创建符号链接。最后一个参数指定了此选项的优先级,如果我们没有手动来设置替代选项,那么具有最高优先级的选项就会被选中。这个例子中,我们为 /usr/bin/python3.4 设置的优先级为2,所以 update-alternatives 命令会自动将它设置为默认 Python 版本。

python --version
Paste_Image.png

如果我们需要继续更换默认版本,只需要再次列出可用的 Python 替代版本。

update-alternatives --list python
Paste_Image.png

使用config命令切换版本,按数字选择

update-alternatives --config python

配置好环境后,进行配置python项目的虚拟环境:
http://www.jianshu.com/p/e8431650842b

你可能感兴趣的:(修改unbuntu系统默认python版本(不建议使用))