广告

本站里的文章大部分经过自行整理与测试

2016年5月6日星期五

Fedora - 选择 Python 版本

# 检查 python 的安装目录
$ ls /usr/bin/python*

# 检查目前所用的版本
$ python -V

$ python --version

# 设置户口所用的 python 版本
# alias python='/usr/bin/python3.4'
# . ~/.bashrc

# 列出 python 版本

$ alternatives --list | grep -i python

# 加上 python 选择项
$ alternatives --install /usr/bin/python python /usr/bin/python3.4 2
$ alternatives --install /usr/bin/python python /usr/bin/python2.7 1


# 通过命令, 设置要用的 python 版本

$ alternatives --config python

没有评论:

发表评论