• Home
  • Raw
  • Download

Lines Matching refs:Python

5 Using Python on a Macintosh
11 Python on a Macintosh running Mac OS X is in principle very similar to Python on
20 Mac OS X 10.8 comes with Python 2.7 pre-installed by Apple. If you wish, you
21 are invited to install the most recent version of Python 3 from the Python
22 website (https://www.python.org). A current "universal binary" build of Python,
30 Python distributions; PythonLauncher, which handles double-clicking Python
32 package Python scripts as standalone applications on your system.
34 * A framework :file:`/Library/Frameworks/Python.framework`, which includes the
35 Python executable and libraries. The installer adds this location to your shell
37 symlink to the Python executable is placed in /usr/local/bin/.
39 The Apple-provided build of Python is installed in
40 :file:`/System/Library/Frameworks/Python.framework` and :file:`/usr/bin/python`,
43 if you choose to install a newer Python version from python.org, you will have
44 two different but functional Python installations on your computer, so it will
47 IDLE includes a help menu that allows you to access Python documentation. If you
48 are completely new to Python you should start reading the tutorial introduction
51 If you are familiar with Python on other Unix platforms you should read the
52 section on running Python scripts from the Unix shell.
55 How to run a Python script
58 Your best way to get started with Python on Mac OS X is through the IDLE
62 If you want to run Python scripts from the Terminal window command line or from
91 With older versions of Python, there is one Mac OS X quirk that you need to be
96 With Python 3.6, you can use either :program:`python` or :program:`pythonw`.
102 Python on OS X honors all standard Unix environment variables such as
109 For more information on installation Python packages in MacPython, see section
125 Installing Additional Python Packages
128 There are several methods to install additional Python packages:
130 * Packages can be installed via the standard Python distutils mode (``python
140 There are several options for building GUI applications on the Mac with Python.
142 *PyObjC* is a Python binding to Apple's Objective-C/Cocoa framework, which is
146 The standard Python GUI toolkit is :mod:`tkinter`, based on the cross-platform
159 Distributing Python Applications on the Mac
163 packaging small Python scripts on your own machine to run as a standard Mac
164 application. This tool, however, is not robust enough to distribute Python
167 The standard tool for deploying standalone Python applications on the Mac is
175 The MacPython mailing list is an excellent support resource for Python users and