📜  mac catallina python3 - Python (1)

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

在Mac Catalina上使用Python3

如果您使用的是Mac Catalina操作系统且需要使用Python3,那么您需要做一些额外的设置。

安装Xcode Command Line Tools

安装Xcode Command Line Tools是使用Python3之前必须要完成的第一步。

打开终端,输入以下命令来安装Xcode Command Line Tools:

xcode-select --install
安装Homebrew

Homebrew是Mac上非常流行的软件包管理器,可以使用它来安装Python3。

打开终端,输入以下命令来安装Homebrew:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
安装Python3

安装Homebrew之后,就可以使用它来安装Python3啦!

打开终端,输入以下命令来安装Python3:

brew install python3
配置环境变量

安装Python3之后,您需要将Python3添加到您的PATH环境变量中。

打开终端,输入以下命令来编辑您的bash配置文件:

nano ~/.bash_profile

在文件的末尾添加以下内容:

export PATH="/usr/local/opt/python/libexec/bin:$PATH"

按CTRL+X,然后按Y键保存文件并退出编辑器。

让bash配置文件生效,输入以下命令:

source ~/.bash_profile

现在,您就可以在终端中使用Python3啦!

结论

这就是在Mac Catalina上使用Python3的全部过程。安装Xcode Command Line Tools、Homebrew和Python3,以及将Python3添加到PATH环境变量中。现在,您已经准备好在Mac上开始开发使用Python3啦!