Ronald Oussoren | 360bcac | 2009-05-19 19:30:44 +0000 | [diff] [blame] | 1 | This package will install Python $FULL_VERSION for Mac OS X |
Ned Deily | 4ce92b2 | 2011-01-15 04:37:12 +0000 | [diff] [blame] | 2 | $MACOSX_DEPLOYMENT_TARGET for the following architecture(s): |
| 3 | $ARCHITECTURES. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 4 | |
Ned Deily | 981b693 | 2013-09-06 01:18:36 -0700 | [diff] [blame] | 5 | **** IMPORTANT **** |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 6 | |
Ned Deily | 981b693 | 2013-09-06 01:18:36 -0700 | [diff] [blame] | 7 | Installing on OS X 10.8 (Mountain Lion) or later systems |
| 8 | ======================================================== |
| 9 | |
| 10 | If you are attempting to install on an OS X 10.8+ system, you may |
Ned Deily | 5c0b1ca | 2012-08-24 19:57:33 -0700 | [diff] [blame] | 11 | see a message that Python can't be installed because it is from an |
| 12 | unidentified developer. This is because this Python installer |
| 13 | package is not yet compatible with the Gatekeeper security feature |
| 14 | introduced in OS X 10.8. To allow Python to be installed, you |
| 15 | can override the Gatekeeper policy for this install. In the Finder, |
| 16 | instead of double-clicking, control-click or right click the "Python" |
| 17 | installer package icon. Then select "Open using ... Installer" from |
| 18 | the contextual menu that appears. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 19 | |
Ned Deily | 981b693 | 2013-09-06 01:18:36 -0700 | [diff] [blame] | 20 | **** IMPORTANT changes if you use IDLE and Tkinter **** |
| 21 | |
| 22 | Installing a third-party version of Tcl/Tk is no longer required |
| 23 | ================================================================ |
| 24 | |
| 25 | Beginning with Python 3.4 alpha2, the 10.6+ 64-bit installer now |
| 26 | comes with its own private copy of Tcl and Tk 8.5 libraries. For |
| 27 | this version of Python, it is no longer necessary to install |
| 28 | a third-party version of Tcl/Tk 8.5, such as those from ActiveState, |
| 29 | to work around the problematic versions of Tcl/Tk 8.5 shipped by |
| 30 | Apple in OS X 10.6 and later. (This does not change the requirements |
| 31 | for older versions of Python installed from python.org.) By default, |
| 32 | this version of Python will always use its own private version, |
| 33 | regardless of whether a third-party Tcl/Tk is installed. |
| 34 | The 10.5+ 32-bit-only installer continues to use Tcl/Tk 8.4, |
| 35 | either a third-party or system-supplied version. |
| 36 | Since this is a new feature, it should be considered somewhat |
| 37 | experimental and subject to change prior to the final release of |
| 38 | Python 3.4. Please report any problems found to the Python bug |
| 39 | tracker at http://bugs.python.org. |
| 40 | |
| 41 | Visit http://www.python.org/download/mac/tcltk/ |
| 42 | for current information about supported and recommended versions of |
| 43 | Tcl/Tk for this version of Python and of Mac OS X. |
| 44 | |
| 45 | Using this version of Python on OS X |
| 46 | ==================================== |
| 47 | |
Ned Deily | 4ce92b2 | 2011-01-15 04:37:12 +0000 | [diff] [blame] | 48 | Python consists of the Python programming language interpreter, plus |
| 49 | a set of programs to allow easy access to it for Mac users including |
| 50 | an integrated development environment, IDLE, plus a set of pre-built |
| 51 | extension modules that open up specific Macintosh technologies to |
| 52 | Python programs. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 53 | |
Ned Deily | 4ce92b2 | 2011-01-15 04:37:12 +0000 | [diff] [blame] | 54 | The installer puts applications, an "Update Shell Profile" command, |
Ned Deily | eb698da | 2011-02-07 16:44:19 +0000 | [diff] [blame] | 55 | and a link to the optionally installed Python Documentation into the |
Ned Deily | 4ce92b2 | 2011-01-15 04:37:12 +0000 | [diff] [blame] | 56 | "Python $VERSION" subfolder of the system Applications folder, |
| 57 | and puts the underlying machinery into the folder |
| 58 | $PYTHONFRAMEWORKINSTALLDIR. It can |
| 59 | optionally place links to the command-line tools in /usr/local/bin as |
| 60 | well. Double-click on the "Update Shell Profile" command to add the |
| 61 | "bin" directory inside the framework to your shell's search path. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 62 | |
Ned Deily | 5c0b1ca | 2012-08-24 19:57:33 -0700 | [diff] [blame] | 63 | You must install onto your current boot disk, even though the |
Ned Deily | 981b693 | 2013-09-06 01:18:36 -0700 | [diff] [blame] | 64 | installer may not enforce this, otherwise things will not work. |
Ned Deily | 5c0b1ca | 2012-08-24 19:57:33 -0700 | [diff] [blame] | 65 | |
| 66 | You can verify the integrity of the disk image file containing the |
| 67 | installer package and this ReadMe file by comparing its md5 checksum |
| 68 | and size with the values published on the release page linked at |
| 69 | http://www.python.org/download/ |
| 70 | |
Ned Deily | 981b693 | 2013-09-06 01:18:36 -0700 | [diff] [blame] | 71 | Installation requires approximately $INSTALL_SIZE MB of disk space, |
| 72 | ignore the message that it will take zero bytes. |
| 73 | |
Ronald Oussoren | 50987bc | 2009-02-12 15:24:51 +0000 | [diff] [blame] | 74 | More information on Python in general can be found at |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 75 | http://www.python.org. |