Install Tkinter on macOS
Install Tkinter on macOS

Heads up! You've already completed this tutorial.

Before you start the Tkinter tutorial you will need to have a working installation of Tkinter on your system. If you don't have either set up yet, the following steps will guide you through how to do this on macOS.

This guide is also available for Ubuntu Linux. On Windows, Tkinter is installed by default with Python.

Install Tkinter on macOS

To install Python and Tkinter on macOS I recommend you use Homebrew. Homebrew is a package manager for command-line software on macOS. Homebrew has both Python 3 and Tkinter available in their repositories.

Homebrew -- the missing package manager for macOS Homebrew -- the missing package manager for macOS

To install homebrew run the following from the command line --

bash
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

This is also available to copy and paste from the Homebrew homepage.

Once Homebrew is installed you can then install Python with --

bash
brew install python3

With Python installed, you can then install Tkinter using Homebrew with --

bash
brew install tkinter
The complete guide to packaging Python GUI applications with PyInstaller.
[[ discount.discount_pc ]]% OFF for the next [[ discount.duration ]] [[discount.description ]] with the code [[ discount.coupon_code ]]

Purchasing Power Parity

Developers in [[ country ]] get [[ discount.discount_pc ]]% OFF on all books & courses with code [[ discount.coupon_code ]]
Well done, you've finished this tutorial! Mark As Complete
[[ user.completed.length ]] completed [[ user.streak+1 ]] day streak

Install Tkinter on macOS was written by Martin Fitzpatrick .

Martin Fitzpatrick has been developing Python/Qt apps for 8 years. Building desktop applications to make data-analysis tools more user-friendly, Python was the obvious choice. Starting with Tk, later moving to wxWidgets and finally adopting PyQt.