我知道这里还有其他帖子询问如何安装 python 3.6,但我想要的只是 python 3 的版本。存储库似乎有 python 3.4,这很好,但问题是 apt-get 没有以某种方式响应这就说得通了。当我尝试命令 apt-get install python3 时,我得到响应:
python3 is already the newest version.
尽管 python -V 命令告诉我 python 是 2.7.9,但还是如此。请问如何安装python 3?
答案1
默认python
解释器是Python 2。如果要运行Python 3,则需要使用命令python3
。我希望跑步python3 -V
能给你带来好处Python 3.4.x
。
答案2
你的系统上已经安装了两个版本的 python,列出它们:
update-alternatives --list python
示例输出:
/usr/bin/python2.7
/usr/bin/python3.5
要将 python3 设置为默认运行:
update-alternatives --config python
选择Python 3.5