安装: 和 的 Python 分步指南 Windows macOS Linux

以下是在、 和 等 Python 流行操作系统上 安装的说明 : Windows macOS Linux

 

安装 Python 于 Windows

1. 访问官方 Python 网站: https://www.python.org/downloads/

2. 下载适合您的 Windows 操作系统(32 位或 64 位)的安装程序。

3. 运行下载的安装文件并选择 Install Now

4. 确保选中  添加 到环境变量的选项 。 Add Python x.x to PATH Python PATH

5. 单击 Install Now 并完成 Python 安装 Windows。

 

安装 Python 于 macOS

1. macOS 通常是 Python 预安装的。 但是,如果您想安装较新的版本或在 Python 系统范围内管理版本,则可以使用 Homebrew.

2. Homebrew 访问网站 https://brew.sh/ 并按照说明进行安装。

3.打开 Terminal 并输入以下命令进行安装 Python:

 brew install python

 

安装 Python 于 Linux

1. TrOn 大多数 Linux 发行版 Python 通常已经安装。 您可以 Python 通过在以下位置运行以下命令来检查已安装的版本 Terminal:

 python3 --version

2. Python 不存在或者您想要安装更新版本,请使用系统的包管理器进行安装 Python。 Python 以下是在一些流行发行版上 安装的一些命令 Linux:

Ubuntu 和 Debian:

sudo apt update  
sudo apt install python3

- CentOS 和 Fedora:

 sudo dnf install python3

- Arch Linux:

sudo pacman -S python

 

安装成功后,您可以通过 在 (或 on) 中运行 (或 on) 命令 Python 来验证安装的版本 。 python3 --version python --version Windows Terminal Command Prompt Windows