How to Install Python Mac?

Open Safari or another browser

Go to https://www.python.org/downloads/

Download the latest Python installer for macOS

Open the downloaded .pkg file

Follow the installation prompts

Enter your Mac password if asked

Wait for the installation to finish

Open Terminal

Type `python3 –version`

Press Enter

Confirm Python is installed

Type `pip3 –version`

Press Enter

Confirm pip is installed

Optionally install Homebrew from https://brew.sh/

Open Terminal

Run `/bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)”`

Run `brew install python`

Verify with `python3 –version`

Suggested for You

Trending Today