Installation Notes
The official Python installer for macOS is a universal binary supporting both Intel and Apple Silicon Macs. It includes IDLE, pip, and documentation.
macOS Ships with Python 2.7
Installer Options
Recommended
Works on both Intel and Apple Silicon Macs (M1, M2, M3). Optimized performance for your Mac architecture.
Package Managers
Install Python using Homebrew or other package managers. Great for developers who prefer command-line installation.
Installation Steps
Standard Installation
- Download the installer using the button above
- Open the downloaded .pkg file
- Follow the installation wizard
- Enter your password when prompted
- Click "Install" to complete the installation
Using Homebrew
If you have Homebrew installed, you can install Python with:
brew install python@3
Verify Installation
Open Terminal and type:
python3 --version
You should see the Python version number displayed.
Documentation
Important Notes
- macOS command is
python3, notpython - Use
pip3for package installation - Xcode Command Line Tools may be required for some packages
- SSL certificates are included in the installer
System Requirements
Apple Silicon Support
Python 3 includes full native support for Apple Silicon Macs (M1, M2, M3). The universal installer automatically uses the native ARM64 version on Apple Silicon, providing optimal performance and compatibility.