我对 Linux 不是很有经验,但我最近安装了 Ubuntu 19.10,我正在尝试使用 Python 3,默认是 Python 2。我花了很多时间阅读如何配置 Ubuntu 以运行 Python 3,但我觉得可以这样做。有人可以帮帮我吗?我使用了这些命令,但没有任何效果...
sudo update-alternatives --list python
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7
答案1
更改默认的 Python 解释器可能不是一个好主意,因为系统工具可能依赖于 Python 版本。
由于 Python 2 支持将于 2020 年初正式结束,因此在创建新项目时使用 Python 3 无疑是一个好主意。
为了使用 Python 3,只需python3
在终端中输入。
没有必要改变默认行为。