Files
linux-wiki/content/deepin折腾笔记/第五章/5.20.md
2021-10-21 14:57:58 +08:00

8 lines
566 B
Markdown
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 5.20 配置命令行默认 Python 版本
不推荐可能导致某些依赖python的软件出现问题在此仅作为示例介绍update-alternatives的基本用法。
首先需要在系统中添加Python2.7、Python3.5的选项默认为Python3.5优先级20
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 10
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5 20
显示update-alternatives --display python
切换sudo update-alternatives --config python