我已经安装了Python 3.7.10,但是在运行`python --version`时,macOS一直报告2.7.10。

时间:2018-08-07 04:06:55

标签: python macos install

我对Python还是很陌生,但是我认为我需要指向python的新版本,以便让我的系统知道已安装新版本。我在macOS 10.13.6上,并使用Homebrew的命令brew install python安装了最新的python。任何帮助将不胜感激。

我尝试过按照this教程进行操作,但由于“迷失路径”容易让我迷路,所以我只能停留在“确保PATH ....”部分。

# Do I have a Python 3 installed?
$ python --version
Python 3.6.4 # Success!
# If you still see 2.7 ensure in PATH /usr/local/bin/ takes precedence over /usr/bin/

1 个答案:

答案 0 :(得分:2)

尝试python3 --version

通常,您需要在终端中对Python做的任何事情最后都加3。