Python Concepts/Introduction and Setup/MacOS Installation
These instructions will help you install Python on a MacOS machine, and is part of the Introduction and Setup lesson.
Checking for an Existing Python InstallationeditMany versions of MacOS come bundled with Python installed, but it is usually an obsolete Python 2 release. That is why you should take extra care following the steps below to determine if Python is already installed on your machine. Open the terminal app and type If the command outputs "Python 3.x" (version number >= 3.0):editExample: Python 3.10.5 You already have a recent version of Python installed! Return to the lesson. If you get "command not found" or similar:editExample: zsh: command not found: python You don't have Python installed. Continue to Installation. If the command outputs "Python 2.x" (version number < 3.0):editExample: Python 2.7.18 This is where things get complicated. See, you have Python 2 installed, but that's an obsolete version that is no longer supported. Try typing Either way, keep in mind that during the course, you will always need to use the InstallationeditInstalling HomebreweditMacOS, unlike most Linux distributions, has no official package manager built-in. Luckily, you can install a very popular one called Homebrew, which is how you will obtain Python and keep it up to date. Run the following command to install Homebrew:[1] /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
The command will walk you through the installation process. Pay close attention to additional instructions it may provide you. Type your password if prompted for it. After you install Homebrew, restart your computer and proceed to the next section. Installing PythoneditAfter you have Homebrew installed, installing Python is only one command away! Open terminal and type: brew install python3 This may take one or two minutes depending on your machine. After the command completes, verify the installation was successful by running
| ||
Return to Introduction and Setup |
References
edit- ↑ "Installing Python 3 on Mac OS X". Python Documentation. Python Software Foundation. Retrieved 2022-06-26.