Lines Matching refs:Python
5 Using Python on a Mac
11 Python on a Mac running macOS is in principle very similar to Python on
20 macOS used to come with Python 2.7 pre-installed between versions
21 … <https://developer.apple.com/documentation/macos-release-notes/macos-12_3-release-notes#Python>`_.
22 You are invited to install the most recent version of Python 3 from the Python
23 website (https://www.python.org). A current "universal binary" build of Python,
29 * A :file:`Python 3.12` folder in your :file:`Applications` folder. In here
31 Python distributions; and PythonLauncher, which handles double-clicking Python
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 macOS 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 macOS quirk that you need to be
96 With Python 3.9, you can use either :program:`python` or :program:`pythonw`.
102 Python on macOS 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
162 The standard tool for deploying standalone Python applications on the Mac is
170 The MacPython mailing list is an excellent support resource for Python users and