📜  使用 python3 作为默认 mac - Python (1)

📅  最后修改于: 2023-12-03 15:22:16.053000             🧑  作者: Mango

使用 python3 作为默认 mac - Python

如果您是一个 Mac 用户,并且您希望使用 Python3 作为默认的 Python 版本,本文将向您介绍方法。

步骤
  1. 安装 Homebrew

访问 https://brew.sh/ 并根据文档的指示安装 Homebrew。

  1. 安装 Python3

运行下面的命令来安装 Python3:

brew install python3
  1. 设置环境变量

在命令行终端里,输入如下命令:

export PATH="/usr/local/bin:$PATH"

若希望让系统一直保持这个设置,可以在终端中打开配置文件 .bash_profile.zshrc,并添加一行:

export PATH="/usr/local/bin:$PATH"
  1. 查看 Python 版本

现在尝试在命令行输入 python 命令,会显示默认是 Python2 的版本。但输入 python3 命令,则会显示 Python3 的版本号。

$ python
Python 2.7.16 (default, Oct  7 2019, 17:39:04)
[GCC 4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.33.8)] on darwin

$ python3
Python 3.7.4 (default, Sep  7 2019, 18:27:02)
[Clang 10.0.1 (clang-1001.0.46.4)] on darwin

因此,您现在已经成功的设置了 Python3 作为默认的 Python 版本。

结论

在这篇文章中,我们向您展示了如何将 Python3 设置为默认的 Python 版本。这是非常方便的,因为许多现代程序使用 Python3,而不是 Python2。