blob: ead71e1b079b3b9cd0139d18798647c631344354 [file] [log] [blame]
Georg Brandl3c8ce772007-11-01 20:58:08 +00001
2.. _using-on-mac:
3
4***************************
5Using Python on a Macintosh
6***************************
7
8:Author: Bob Savage <bobsavage@mac.com>
9
10
11Python on a Macintosh running Mac OS X is in principle very similar to Python on
12any other Unix platform, but there are a number of additional features such as
13the IDE and the Package Manager that are worth pointing out.
14
Georg Brandl3c8ce772007-11-01 20:58:08 +000015.. _getting-osx:
16
17Getting and Installing MacPython
18================================
19
Georg Brandle0959682013-04-14 10:17:35 +020020Mac OS X 10.8 comes with Python 2.7 pre-installed by Apple. If you wish, you
21are invited to install the most recent version of Python 3 from the Python
Georg Brandle73778c2014-10-29 08:36:35 +010022website (https://www.python.org). A current "universal binary" build of Python,
Georg Brandle0959682013-04-14 10:17:35 +020023which runs natively on the Mac's new Intel and legacy PPC CPU's, is available
24there.
Georg Brandl3c8ce772007-11-01 20:58:08 +000025
26What you get after installing is a number of things:
27
Makdon905e19a2019-06-13 13:04:13 +080028* A :file:`Python 3.9` folder in your :file:`Applications` folder. In here
Georg Brandl3c8ce772007-11-01 20:58:08 +000029 you find IDLE, the development environment that is a standard part of official
Andre Delfino7864f112020-05-21 19:45:23 -030030 Python distributions; and PythonLauncher, which handles double-clicking Python
31 scripts from the Finder.
Georg Brandl3c8ce772007-11-01 20:58:08 +000032
33* A framework :file:`/Library/Frameworks/Python.framework`, which includes the
34 Python executable and libraries. The installer adds this location to your shell
35 path. To uninstall MacPython, you can simply remove these three things. A
36 symlink to the Python executable is placed in /usr/local/bin/.
37
38The Apple-provided build of Python is installed in
39:file:`/System/Library/Frameworks/Python.framework` and :file:`/usr/bin/python`,
40respectively. You should never modify or delete these, as they are
Benjamin Peterson9aa42992008-09-10 21:57:34 +000041Apple-controlled and are used by Apple- or third-party software. Remember that
42if you choose to install a newer Python version from python.org, you will have
43two different but functional Python installations on your computer, so it will
44be important that your paths and usages are consistent with what you want to do.
Georg Brandl3c8ce772007-11-01 20:58:08 +000045
46IDLE includes a help menu that allows you to access Python documentation. If you
47are completely new to Python you should start reading the tutorial introduction
48in that document.
49
50If you are familiar with Python on other Unix platforms you should read the
51section on running Python scripts from the Unix shell.
52
53
54How to run a Python script
55--------------------------
56
57Your best way to get started with Python on Mac OS X is through the IDLE
58integrated development environment, see section :ref:`ide` and use the Help menu
59when the IDE is running.
60
61If you want to run Python scripts from the Terminal window command line or from
62the Finder you first need an editor to create your script. Mac OS X comes with a
63number of standard Unix command line editors, :program:`vim` and
64:program:`emacs` among them. If you want a more Mac-like editor,
65:program:`BBEdit` or :program:`TextWrangler` from Bare Bones Software (see
Georg Brandl525d3552014-10-29 10:26:56 +010066http://www.barebones.com/products/bbedit/index.html) are good choices, as is
Serhiy Storchaka6dff0202016-05-07 10:49:07 +030067:program:`TextMate` (see https://macromates.com/). Other editors include
Sanyam Khurana338cd832018-01-20 05:55:37 +053068:program:`Gvim` (http://macvim-dev.github.io/macvim/) and :program:`Aquamacs`
Ezio Melotti19192dd2010-04-05 13:25:51 +000069(http://aquamacs.org/).
Georg Brandl3c8ce772007-11-01 20:58:08 +000070
71To run your script from the Terminal window you must make sure that
72:file:`/usr/local/bin` is in your shell search path.
73
74To run your script from the Finder you have two options:
75
76* Drag it to :program:`PythonLauncher`
77
78* Select :program:`PythonLauncher` as the default application to open your
79 script (or any .py script) through the finder Info window and double-click it.
80 :program:`PythonLauncher` has various preferences to control how your script is
81 launched. Option-dragging allows you to change these for one invocation, or use
82 its Preferences menu to change things globally.
83
84
85.. _osx-gui-scripts:
86
87Running scripts with a GUI
88--------------------------
89
90With older versions of Python, there is one Mac OS X quirk that you need to be
91aware of: programs that talk to the Aqua window manager (in other words,
92anything that has a GUI) need to be run in a special way. Use :program:`pythonw`
93instead of :program:`python` to start such scripts.
94
Makdon905e19a2019-06-13 13:04:13 +080095With Python 3.9, you can use either :program:`python` or :program:`pythonw`.
Georg Brandl3c8ce772007-11-01 20:58:08 +000096
97
98Configuration
99-------------
100
101Python on OS X honors all standard Unix environment variables such as
102:envvar:`PYTHONPATH`, but setting these variables for programs started from the
103Finder is non-standard as the Finder does not read your :file:`.profile` or
Zachary Ware1a837462015-08-29 22:25:04 -0500104:file:`.cshrc` at startup. You need to create a file
105:file:`~/.MacOSX/environment.plist`. See Apple's Technical Document QA1067 for
106details.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000107
108For more information on installation Python packages in MacPython, see section
109:ref:`mac-package-manager`.
110
111
112.. _ide:
113
114The IDE
115=======
116
117MacPython ships with the standard IDLE development environment. A good
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000118introduction to using IDLE can be found at
Sanyam Khurana338cd832018-01-20 05:55:37 +0530119http://www.hashcollision.org/hkn/python/idle_intro/index.html.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000120
121
122.. _mac-package-manager:
123
124Installing Additional Python Packages
125=====================================
126
127There are several methods to install additional Python packages:
128
Georg Brandl3c8ce772007-11-01 20:58:08 +0000129* Packages can be installed via the standard Python distutils mode (``python
130 setup.py install``).
131
Georg Brandle0959682013-04-14 10:17:35 +0200132* Many packages can also be installed via the :program:`setuptools` extension
Georg Brandl525d3552014-10-29 10:26:56 +0100133 or :program:`pip` wrapper, see https://pip.pypa.io/.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000134
135
136GUI Programming on the Mac
137==========================
138
139There are several options for building GUI applications on the Mac with Python.
140
141*PyObjC* is a Python binding to Apple's Objective-C/Cocoa framework, which is
142the foundation of most modern Mac development. Information on PyObjC is
Julien Palard7114c652019-05-25 20:02:24 +0200143available from https://pypi.org/project/pyobjc/.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000144
Ezio Melotti1a263ad2010-03-14 09:51:37 +0000145The standard Python GUI toolkit is :mod:`tkinter`, based on the cross-platform
Serhiy Storchaka6dff0202016-05-07 10:49:07 +0300146Tk toolkit (https://www.tcl.tk). An Aqua-native version of Tk is bundled with OS
Georg Brandl3c8ce772007-11-01 20:58:08 +0000147X by Apple, and the latest version can be downloaded and installed from
Serhiy Storchaka6dff0202016-05-07 10:49:07 +0300148https://www.activestate.com; it can also be built from source.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000149
150*wxPython* is another popular cross-platform GUI toolkit that runs natively on
Sanyam Khurana1b4587a2017-12-06 22:09:33 +0530151Mac OS X. Packages and documentation are available from https://www.wxpython.org.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000152
153*PyQt* is another popular cross-platform GUI toolkit that runs natively on Mac
154OS X. More information can be found at
Georg Brandl5d941342016-02-26 19:37:12 +0100155https://riverbankcomputing.com/software/pyqt/intro.
Georg Brandl3c8ce772007-11-01 20:58:08 +0000156
157
158Distributing Python Applications on the Mac
159===========================================
160
Georg Brandl3c8ce772007-11-01 20:58:08 +0000161The standard tool for deploying standalone Python applications on the Mac is
162:program:`py2app`. More information on installing and using py2app can be found
163at http://undefined.org/python/#py2app.
164
165
Georg Brandl3c8ce772007-11-01 20:58:08 +0000166Other Resources
167===============
168
169The MacPython mailing list is an excellent support resource for Python users and
170developers on the Mac:
171
Georg Brandle73778c2014-10-29 08:36:35 +0100172https://www.python.org/community/sigs/current/pythonmac-sig/
Georg Brandl3c8ce772007-11-01 20:58:08 +0000173
174Another useful resource is the MacPython wiki:
175
Georg Brandle73778c2014-10-29 08:36:35 +0100176https://wiki.python.org/moin/MacPython
Georg Brandl3c8ce772007-11-01 20:58:08 +0000177