blob: 07f09fa83665283806647f37a2a2191a41d024e5 [file] [log] [blame]
Ned Deily8e5c0a72012-06-23 23:13:24 -07001=========================
2Python on Mac OS X README
3=========================
4
5:Authors:
6 Jack Jansen (2004-07),
7 Ronald Oussoren (2010-04),
8 Ned Deily (2012-06)
9
Ned Deily87adb6e2013-10-18 21:09:56 -070010:Version: 3.4.0
Jack Jansen0fdaee72002-08-02 21:45:27 +000011
Thomas Wouters477c8d52006-05-27 19:21:47 +000012This document provides a quick overview of some Mac OS X specific features in
13the Python distribution.
14
Ned Deily5d520222014-05-17 14:30:09 -070015OS X specific arguments to configure
16====================================
17
Ronald Oussoren86b33c82010-04-30 11:41:56 +000018* ``--enable-framework[=DIR]``
Ronald Oussoren6f6c5622009-12-24 14:03:19 +000019
20 If this argument is specified the build will create a Python.framework rather
21 than a traditional Unix install. See the section
Serhiy Storchakabfbfc8d2015-03-29 19:12:58 +030022 _`Building and using a framework-based Python on Mac OS X` for more
Ronald Oussoren6f6c5622009-12-24 14:03:19 +000023 information on frameworks.
24
Ned Deily8e5c0a72012-06-23 23:13:24 -070025 If the optional directory argument is specified the framework is installed
Ronald Oussoren86b33c82010-04-30 11:41:56 +000026 into that directory. This can be used to install a python framework into
27 your home directory::
28
Ned Deily8e5c0a72012-06-23 23:13:24 -070029 $ ./configure --enable-framework=/Users/ronald/Library/Frameworks
Ronald Oussoren86b33c82010-04-30 11:41:56 +000030 $ make && make install
31
32 This will install the framework itself in ``/Users/ronald/Library/Frameworks``,
33 the applications in a subdirectory of ``/Users/ronald/Applications`` and the
34 command-line tools in ``/Users/ronald/bin``.
35
Ronald Oussoren6f6c5622009-12-24 14:03:19 +000036* ``--with-framework-name=NAME``
37
38 Specify the name for the python framework, defaults to ``Python``. This option
39 is only valid when ``--enable-framework`` is specified.
40
41* ``--enable-universalsdk[=PATH]``
42
Terry Jan Reedy65e69b32013-03-11 17:23:46 -040043 Create a universal binary build of Python. This can be used with both
Ronald Oussoren6f6c5622009-12-24 14:03:19 +000044 regular and framework builds.
45
Ned Deily8e5c0a72012-06-23 23:13:24 -070046 The optional argument specifies which OS X SDK should be used to perform the
47 build. If xcodebuild is available and configured, this defaults to
48 the Xcode default MacOS X SDK, otherwise ``/Developer/SDKs/MacOSX.10.4u.sdk``
Ned Deilye76a6d52016-02-25 01:34:34 +110049 if available or ``/`` if not. When building on OS X 10.5 or later, you can
50 specify ``/`` to use the installed system headers rather than an SDK. As of
51 OS X 10.9, you should install the optional system headers from the Command
52 Line Tools component using ``xcode-select``::
53
54 $ sudo xcode-select --install
Ronald Oussoren6f6c5622009-12-24 14:03:19 +000055
56 See the section _`Building and using a universal binary of Python on Mac OS X`
57 for more information.
58
Martin Panter46f50722016-05-26 05:35:26 +000059* ``--with-universal-archs=VALUE``
Ronald Oussoren6f6c5622009-12-24 14:03:19 +000060
Serhiy Storchakabfbfc8d2015-03-29 19:12:58 +030061 Specify the kind of universal binary that should be created. This option is
Ned Deily8e5c0a72012-06-23 23:13:24 -070062 only valid when ``--enable-universalsdk`` is specified. The default is
63 ``32-bit`` if a building with a SDK that supports PPC, otherwise defaults
64 to ``intel``.
Ronald Oussoren6f6c5622009-12-24 14:03:19 +000065
Thomas Wouters477c8d52006-05-27 19:21:47 +000066
67Building and using a universal binary of Python on Mac OS X
68===========================================================
69
701. What is a universal binary
71-----------------------------
72
Ned Deily8e5c0a72012-06-23 23:13:24 -070073A universal binary build of Python contains object code for more than one
74CPU architecture. A universal OS X executable file or library combines the
75architecture-specific code into one file and can therefore run at native
76speed on all supported architectures. Universal files were introduced in
77OS X 10.4 to add support for Intel-based Macs to the existing PowerPC (PPC)
78machines. In OS X 10.5 support was extended to 64-bit Intel and 64-bit PPC
79architectures. It is possible to build Python with various combinations
80of architectures depending on the build tools and OS X version in use.
Thomas Wouters477c8d52006-05-27 19:21:47 +000081
822. How do I build a universal binary
83------------------------------------
84
85You can enable universal binaries by specifying the "--enable-universalsdk"
86flag to configure::
87
88 $ ./configure --enable-universalsdk
89 $ make
90 $ make install
91
Ned Deilye742ade2012-03-17 10:29:41 -070092This flag can be used with a framework build of python, but also with a classic
Ned Deily8e5c0a72012-06-23 23:13:24 -070093unix build. Universal builds were first supported with OS X 10.4 with Xcode 2.1
94and the 10.4u SDK. Starting with Xcode 3 and OS X 10.5, more configurations are
95available.
Thomas Wouters477c8d52006-05-27 19:21:47 +000096
Ned Deily892f4f92014-02-11 17:57:37 -080097In general, universal builds depend on specific features provided by the
98Apple-supplied compilers and other build tools included in Apple's Xcode
99development tools. You should install Xcode and the command line tools
100component appropriate for the OS X release you are running on. See the
101Python Developer's Guide (http://docs.python.org/devguide/setup.html)
102for more information.
103
Ned Deily8e5c0a72012-06-23 23:13:24 -07001042.1 Flavors of universal binaries
105.................................
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000106
Ned Deily8e5c0a72012-06-23 23:13:24 -0700107It is possible to build a number of flavors of the universal binary build,
108the default is a 32-bit only binary (i386 and ppc) in build environments that
109support ppc (10.4 with Xcode 2, 10.5 and 10.6 with Xcode 3) or an
110Intel-32/-64-bit binary (i386 and X86_64) in build environments that do not
111support ppc (Xcode 4 on 10.6 and later systems). The flavor can be specified
112using the configure option ``--with-universal-archs=VALUE``. The following
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000113values are available:
114
Ned Deily8e5c0a72012-06-23 23:13:24 -0700115 * ``intel``: ``i386``, ``x86_64``
116
Ned Deily87adb6e2013-10-18 21:09:56 -0700117 * ``intel-32``: ``i386``
118
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000119 * ``32-bit``: ``ppc``, ``i386``
120
Ned Deily8e5c0a72012-06-23 23:13:24 -0700121 * ``3-way``: ``i386``, ``x86_64``, ``ppc``
122
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000123 * ``64-bit``: ``ppc64``, ``x86_64``
124
125 * ``all``: ``ppc``, ``ppc64``, ``i386``, ``x86_64``
126
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000127To build a universal binary that includes a 64-bit architecture, you must build
Ned Deily8e5c0a72012-06-23 23:13:24 -0700128on a system running OS X 10.5 or later. The ``all`` and ``64-bit`` flavors can
Martin Panter4c359642016-05-08 13:53:41 +0000129only be built with a 10.5 SDK because ``ppc64`` support was only included with
Ned Deily8e5c0a72012-06-23 23:13:24 -0700130OS X 10.5. Although legacy ``ppc`` support was included with Xcode 3 on OS X
13110.6, it was removed in Xcode 4, versions of which were released on OS X 10.6
Ned Deily5d520222014-05-17 14:30:09 -0700132and which is the standard for OS X 10.7. To summarize, the
Ned Deily8e5c0a72012-06-23 23:13:24 -0700133following combinations of SDKs and universal-archs flavors are available:
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000134
Ned Deily8e5c0a72012-06-23 23:13:24 -0700135 * 10.4u SDK with Xcode 2 supports ``32-bit`` only
136
137 * 10.5 SDK with Xcode 3.1.x supports all flavors
138
139 * 10.6 SDK with Xcode 3.2.x supports ``intel``, ``3-way``, and ``32-bit``
140
141 * 10.6 SDK with Xcode 4 supports ``intel`` only
142
143 * 10.7 and 10.8 SDKs with Xcode 4 support ``intel`` only
144
Ned Deily5d520222014-05-17 14:30:09 -0700145 * 10.8 and 10.9 SDKs with Xcode 5 support ``intel`` only
146
Ned Deily87adb6e2013-10-18 21:09:56 -0700147The makefile for a framework build will also install ``python3.4-32``
Ned Deily8e5c0a72012-06-23 23:13:24 -0700148binaries when the universal architecture includes at least one 32-bit
149architecture (that is, for all flavors but ``64-bit``).
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000150
Ned Deily5c0b1ca2012-08-24 19:57:33 -0700151Running a specific architecture
152...............................
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000153
154You can run code using a specific architecture using the ``arch`` command::
155
156 $ arch -i386 python
157
158Or to explicitly run in 32-bit mode, regardless of the machine hardware::
159
160 $ arch -i386 -ppc python
161
162NOTE: When you're using a framework install of Python this requires at least
163Python 2.7 or 3.2, in earlier versions the python (and pythonw) commands are
164wrapper tools that execute the real interpreter without ensuring that the
165real interpreter runs with the same architecture.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000166
Ned Deily5c0b1ca2012-08-24 19:57:33 -0700167Using ``arch`` is not a perfect solution as the selected architecture will
168not automatically carry through to subprocesses launched by programs and tests
169under that Python. If you want to ensure that Python interpreters launched in
170subprocesses also run in 32-bit-mode if the main interpreter does, use
Ned Deily87adb6e2013-10-18 21:09:56 -0700171a ``python3.4-32`` binary and use the value of ``sys.executable`` as the
Ned Deily5c0b1ca2012-08-24 19:57:33 -0700172``subprocess`` ``Popen`` executable value.
173
Thomas Wouters477c8d52006-05-27 19:21:47 +0000174Building and using a framework-based Python on Mac OS X.
175========================================================
176
Jack Jansen0fdaee72002-08-02 21:45:27 +0000177
Brett Cannon98809b72004-12-06 06:01:13 +00001781. Why would I want a framework Python instead of a normal static Python?
Jack Jansen0fdaee72002-08-02 21:45:27 +0000179--------------------------------------------------------------------------
180
Jack Jansen1f74ed82002-09-06 21:00:55 +0000181The main reason is because you want to create GUI programs in Python. With the
Serhiy Storchakabfbfc8d2015-03-29 19:12:58 +0300182exception of X11/XDarwin-based GUI toolkits all GUI programs need to be run
Ned Deily5d520222014-05-17 14:30:09 -0700183from a Mac OS X application bundle (".app").
Jack Jansen0fdaee72002-08-02 21:45:27 +0000184
Jack Jansen1f74ed82002-09-06 21:00:55 +0000185While it is technically possible to create a .app without using frameworks you
186will have to do the work yourself if you really want this.
Jack Jansen0fdaee72002-08-02 21:45:27 +0000187
Jack Jansen1f74ed82002-09-06 21:00:55 +0000188A second reason for using frameworks is that they put Python-related items in
Serhiy Storchakabfbfc8d2015-03-29 19:12:58 +0300189only two places: "/Library/Framework/Python.framework" and
Ned Deily87adb6e2013-10-18 21:09:56 -0700190"/Applications/Python <VERSION>" where ``<VERSION>`` can be e.g. "3.4",
Ned Deily8e5c0a72012-06-23 23:13:24 -0700191"2.7", etc. This simplifies matters for users installing
Thomas Wouters477c8d52006-05-27 19:21:47 +0000192Python from a binary distribution if they want to get rid of it again. Moreover,
Ned Deily8e5c0a72012-06-23 23:13:24 -0700193due to the way frameworks work, a user without admin privileges can install a
Thomas Wouters477c8d52006-05-27 19:21:47 +0000194binary distribution in his or her home directory without recompilation.
Jack Jansen7c0d7ba2003-06-20 15:14:08 +0000195
Jack Jansen0fdaee72002-08-02 21:45:27 +00001962. How does a framework Python differ from a normal static Python?
197------------------------------------------------------------------
198
199In everyday use there is no difference, except that things are stored in
200a different place. If you look in /Library/Frameworks/Python.framework
201you will see lots of relative symlinks, see the Apple documentation for
202details. If you are used to a normal unix Python file layout go down to
203Versions/Current and you will see the familiar bin and lib directories.
204
2053. Do I need extra packages?
206----------------------------
207
Ned Deily5d520222014-05-17 14:30:09 -0700208Yes, probably. If you want Tkinter support you need to get the OS X AquaTk
Ned Deily5c0b1ca2012-08-24 19:57:33 -0700209distribution, this is installed by default on Mac OS X 10.4 or later. Be
210aware, though, that the Cocoa-based AquaTk's supplied starting with OS X
21110.6 have proven to be unstable. If possible, you should consider
212installing a newer version before building on OS X 10.6 or later, such as
213the ActiveTcl 8.5. See http://www.python.org/download/mac/tcltk/. If you
214are building with an SDK, ensure that the newer Tcl and Tk frameworks are
215seen in the SDK's ``Library/Frameworks`` directory; you may need to
216manually create symlinks to their installed location, ``/Library/Frameworks``.
217If you want wxPython you need to get that.
218If you want Cocoa you need to get PyObjC.
Jack Jansen0fdaee72002-08-02 21:45:27 +0000219
2204. How do I build a framework Python?
221-------------------------------------
222
Jack Jansen21ed16a2002-08-02 14:11:24 +0000223This directory contains a Makefile that will create a couple of python-related
Ned Deily5d520222014-05-17 14:30:09 -0700224applications (full-blown OS X .app applications, that is) in
Ned Deily8e5c0a72012-06-23 23:13:24 -0700225"/Applications/Python <VERSION>", and a hidden helper application Python.app
Ned Deily5d520222014-05-17 14:30:09 -0700226inside the Python.framework, and unix tools including "python" into
Ned Deily8e5c0a72012-06-23 23:13:24 -0700227/usr/local/bin. In addition it has a target "installmacsubtree" that installs
Thomas Wouters477c8d52006-05-27 19:21:47 +0000228the relevant portions of the Mac subtree into the Python.framework.
Jack Jansen0511b762001-09-06 16:36:42 +0000229
Jack Jansen21ed16a2002-08-02 14:11:24 +0000230It is normally invoked indirectly through the main Makefile, as the last step
231in the sequence
Thomas Wouters477c8d52006-05-27 19:21:47 +0000232
233 1. ./configure --enable-framework
234
235 2. make
Serhiy Storchakabfbfc8d2015-03-29 19:12:58 +0300236
Thomas Wouters477c8d52006-05-27 19:21:47 +0000237 3. make install
Jack Jansen0fdaee72002-08-02 21:45:27 +0000238
Ned Deily8e5c0a72012-06-23 23:13:24 -0700239This sequence will put the framework in ``/Library/Framework/Python.framework``,
Serhiy Storchakabfbfc8d2015-03-29 19:12:58 +0300240the applications in ``/Applications/Python <VERSION>`` and the unix tools in
Ned Deily8e5c0a72012-06-23 23:13:24 -0700241``/usr/local/bin``.
Jack Jansen7a1703d2002-08-12 20:46:18 +0000242
Ned Deily8e5c0a72012-06-23 23:13:24 -0700243Installing in another place, for instance ``$HOME/Library/Frameworks`` if you
244have no admin privileges on your machine, is possible. This can be accomplished
245by configuring with ``--enable-framework=$HOME/Library/Frameworks``.
246The other two directories will then also be installed in your home directory,
247at ``$HOME/Applications/Python-<VERSION>`` and ``$HOME/bin``.
Jack Jansen7a1703d2002-08-12 20:46:18 +0000248
249If you want to install some part, but not all, read the main Makefile. The
Jack Jansen1f74ed82002-09-06 21:00:55 +0000250frameworkinstall is composed of a couple of sub-targets that install the
251framework itself, the Mac subtree, the applications and the unix tools.
Jack Jansen7a1703d2002-08-12 20:46:18 +0000252
Jack Jansen7c0d7ba2003-06-20 15:14:08 +0000253There is an extra target frameworkinstallextras that is not part of the
Georg Brandl59b44722010-12-30 22:12:40 +0000254normal frameworkinstall which installs the Tools directory into
Ned Deily8e5c0a72012-06-23 23:13:24 -0700255"/Applications/Python <VERSION>", this is useful for binary
Brett Cannon85266da2009-12-13 21:15:41 +0000256distributions.
Jack Jansen7c0d7ba2003-06-20 15:14:08 +0000257
Thomas Wouters477c8d52006-05-27 19:21:47 +0000258What do all these programs do?
259===============================
Jack Jansen7a1703d2002-08-12 20:46:18 +0000260
Thomas Wouters477c8d52006-05-27 19:21:47 +0000261"IDLE.app" is an integrated development environment for Python: editor,
Jack Jansen0fdaee72002-08-02 21:45:27 +0000262debugger, etc.
263
Ned Deily5d520222014-05-17 14:30:09 -0700264"Python Launcher.app" is a helper application that will handle things when you
Jack Jansen0fdaee72002-08-02 21:45:27 +0000265double-click a .py, .pyc or .pyw file. For the first two it creates a Terminal
Jack Jansen1f74ed82002-09-06 21:00:55 +0000266window and runs the scripts with the normal command-line Python. For the
267latter it runs the script in the Python.app interpreter so the script can do
Ned Deily8e5c0a72012-06-23 23:13:24 -0700268GUI-things. Keep the ``Option`` key depressed while dragging or double-clicking
269a script to set runtime options. These options can be set persistently
Ned Deily5d520222014-05-17 14:30:09 -0700270through Python Launcher's preferences dialog.
Jack Jansen0fdaee72002-08-02 21:45:27 +0000271
Ned Deily5d520222014-05-17 14:30:09 -0700272The program ``pythonx.x`` runs python scripts from the command line.
273Previously, various compatibility aliases were also installed, including
274``pythonwx.x`` which in early releases of Python on OS X was required to run
275GUI programs. As of 3.4.0, the ``pythonwx.x`` aliases are no longer installed.
Jack Jansen0fdaee72002-08-02 21:45:27 +0000276
Thomas Wouters477c8d52006-05-27 19:21:47 +0000277How do I create a binary distribution?
278======================================
Jack Jansen8ba42202002-09-06 20:24:51 +0000279
Ned Deily8e5c0a72012-06-23 23:13:24 -0700280Download and unpack the source release from http://www.python.org/download/.
281Go to the directory ``Mac/BuildScript``. There you will find a script
282``build-installer.py`` that does all the work. This will download and build
Ned Deilye742ade2012-03-17 10:29:41 -0700283a number of 3rd-party libaries, configures and builds a framework Python,
284installs it, creates the installer package files and then packs this in a
Ned Deily8e5c0a72012-06-23 23:13:24 -0700285DMG image. The script also builds an HTML copy of the current Python
286documentation set for this release for inclusion in the framework. The
287installer package will create links to the documentation for use by IDLE,
288pydoc, shell users, and Finder user.
Jack Jansen4f901372004-07-15 21:30:41 +0000289
Ned Deily8e5c0a72012-06-23 23:13:24 -0700290The script will build a universal binary so you'll therefore have to run this
Thomas Wouters477c8d52006-05-27 19:21:47 +0000291script on Mac OS X 10.4 or later and with Xcode 2.1 or later installed.
Ned Deily8e5c0a72012-06-23 23:13:24 -0700292However, the Python build process itself has several build dependencies not
293available out of the box with OS X 10.4 so you may have to install
294additional software beyond what is provided with Xcode 2. OS X 10.5
295provides a recent enough system Python (in ``/usr/bin``) to build
Ned Deily5c0b1ca2012-08-24 19:57:33 -0700296the Python documentation set. It should be possible to use SDKs and/or older
297versions of Xcode to build installers that are compatible with older systems
298on a newer system but this may not be completely foolproof so the resulting
299executables, shared libraries, and ``.so`` bundles should be carefully
300examined and tested on all supported systems for proper dynamic linking
301dependencies. It is safest to build the distribution on a system running the
302minimum OS X version supported.
Jack Jansen8ba42202002-09-06 20:24:51 +0000303
Jack Jansen7c0d7ba2003-06-20 15:14:08 +0000304All of this is normally done completely isolated in /tmp/_py, so it does not
305use your normal build directory nor does it install into /.
Jack Jansen8ba42202002-09-06 20:24:51 +0000306
Thomas Wouters477c8d52006-05-27 19:21:47 +0000307Because of the way the script locates the files it needs you have to run it
Serhiy Storchakabfbfc8d2015-03-29 19:12:58 +0300308from within the BuildScript directory. The script accepts a number of
Thomas Wouters477c8d52006-05-27 19:21:47 +0000309command-line arguments, run it with --help for more information.
Jack Jansen8ba42202002-09-06 20:24:51 +0000310
Ronald Oussorenf9adc372010-02-07 11:46:38 +0000311Configure warnings
312==================
313
314The configure script sometimes emits warnings like the one below::
315
316 configure: WARNING: libintl.h: present but cannot be compiled
317 configure: WARNING: libintl.h: check for missing prerequisite headers?
318 configure: WARNING: libintl.h: see the Autoconf documentation
319 configure: WARNING: libintl.h: section "Present But Cannot Be Compiled"
Ned Deily5d520222014-05-17 14:30:09 -0700320 configure: WARNING: libintl.h: proceeding with the preprocessor's result
Ronald Oussorenf9adc372010-02-07 11:46:38 +0000321 configure: WARNING: libintl.h: in the future, the compiler will take precedence
322 configure: WARNING: ## -------------------------------------- ##
323 configure: WARNING: ## Report this to http://bugs.python.org/ ##
324 configure: WARNING: ## -------------------------------------- ##
325
326This almost always means you are trying to build a universal binary for
Ned Deily5c0b1ca2012-08-24 19:57:33 -0700327Python and have libraries in ``/usr/local`` that don't contain the required
Ronald Oussorenf9adc372010-02-07 11:46:38 +0000328architectures. Temporarily move ``/usr/local`` aside to finish the build.
329
Ronald Oussoren56d64102010-04-30 15:13:13 +0000330
331Uninstalling a framework install, including the binary installer
332================================================================
333
Ned Deilye742ade2012-03-17 10:29:41 -0700334Uninstalling a framework can be done by manually removing all bits that got installed.
335That's true for both installations from source and installations using the binary installer.
Ned Deily8e5c0a72012-06-23 23:13:24 -0700336OS X does not provide a central uninstaller.
Ronald Oussoren56d64102010-04-30 15:13:13 +0000337
338The main bit of a framework install is the framework itself, installed in
339``/Library/Frameworks/Python.framework``. This can contain multiple versions
340of Python, if you want to remove just one version you have to remove the
341version-specific subdirectory: ``/Library/Frameworks/Python.framework/Versions/X.Y``.
342If you do that, ensure that ``/Library/Frameworks/Python.framework/Versions/Current``
343is a symlink that points to an installed version of Python.
344
345A framework install also installs some applications in ``/Applications/Python X.Y``,
346
347And lastly a framework installation installs files in ``/usr/local/bin``, all of
348them symbolic links to files in ``/Library/Frameworks/Python.framework/Versions/X.Y/bin``.
349
Jack Jansen408c16f2001-09-11 11:30:02 +0000350
Ned Deily8e5c0a72012-06-23 23:13:24 -0700351Resources
352=========
Jack Jansen0511b762001-09-06 16:36:42 +0000353
Ned Deily8e5c0a72012-06-23 23:13:24 -0700354 * http://www.python.org/download/mac/
355
356 * http://www.python.org/community/sigs/current/pythonmac-sig/
357
358 * http://docs.python.org/devguide/