# 检查 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
没有评论:
发表评论