- Python Idle Download Mac Download
- Idle Python Download
- Python Idle Download Mac Version
- Python Shell Download
- Idle Python 3.4 Download
Jan 09, 2012 In the stock Mac OS X python installation, idle is found in /usr/bin, which is not (easily) accessible from Finder and not indexed by Spotlight. The quickest option is to open the Terminal utility and type 'idle' at the prompt. Install Python 3.4.1 (Python 2.7 is already installed by default). Download Xcode from the Mac App Store; Navigate to Xcode Preferences Downloads tab. Installing Python IDLE On Windows. Step-1: Python is available on its website Python.org. Hove the mouse on the downloads menu and then on the windows option and click on the button for the latest release. CLICK TO PYTHON 3.7.4 AS SHOWN BELOW. Step 2: Click on download button Windows x86-64 executable installer.
I am new to python. I am using python 3.5 on mac os x el capitan. I tried using the command 'pip install requests' in the python interpreter IDLE. But it throws invalid 'syntax error'. I read about installing modules is only possible in the command line. So I moved to TERMINAL, but no command is working here also.
Bob Savage <bobsavage@mac.com>
Python on a Mac running macOS is in principle very similar to Python onany other Unix platform, but there are a number of additional features such asthe IDE and the Package Manager that are worth pointing out.
4.1. Getting and Installing MacPython¶
macOS since version 10.8 comes with Python 2.7 pre-installed by Apple. If you wish, youare invited to install the most recent version of Python 3 from the Pythonwebsite (https://www.python.org). A current “universal binary” build of Python,which runs natively on the Mac’s new Intel and legacy PPC CPU’s, is availablethere.
What you get after installing is a number of things:
A
Python3.9
folder in yourApplications
folder. In hereyou find IDLE, the development environment that is a standard part of officialPython distributions; and PythonLauncher, which handles double-clicking Pythonscripts from the Finder.A framework
/Library/Frameworks/Python.framework
, which includes thePython executable and libraries. The installer adds this location to your shellpath. To uninstall MacPython, you can simply remove these three things. Asymlink to the Python executable is placed in /usr/local/bin/.
The Apple-provided build of Python is installed in/System/Library/Frameworks/Python.framework
and /usr/bin/python
,respectively. You should never modify or delete these, as they areApple-controlled and are used by Apple- or third-party software. Remember thatif you choose to install a newer Python version from python.org, you will havetwo different but functional Python installations on your computer, so it willbe important that your paths and usages are consistent with what you want to do.
IDLE includes a help menu that allows you to access Python documentation. If youare completely new to Python you should start reading the tutorial introductionin that document.
If you are familiar with Python on other Unix platforms you should read thesection on running Python scripts from the Unix shell.
4.1.1. How to run a Python script¶
Your best way to get started with Python on macOS is through the IDLEintegrated development environment, see section The IDE and use the Help menuwhen the IDE is running.
If you want to run Python scripts from the Terminal window command line or fromthe Finder you first need an editor to create your script. macOS comes with anumber of standard Unix command line editors, vim andemacs among them. If you want a more Mac-like editor,BBEdit or TextWrangler from Bare Bones Software (seehttp://www.barebones.com/products/bbedit/index.html) are good choices, as isTextMate (see https://macromates.com/). Other editors includeGvim (http://macvim-dev.github.io/macvim/) and Aquamacs(http://aquamacs.org/).
To run your script from the Terminal window you must make sure that/usr/local/bin
is in your shell search path.
To run your script from the Finder you have two options:
Drag it to PythonLauncher
Select PythonLauncher as the default application to open yourscript (or any .py script) through the finder Info window and double-click it.PythonLauncher has various preferences to control how your script islaunched. Option-dragging allows you to change these for one invocation, or useits Preferences menu to change things globally.
4.1.2. Running scripts with a GUI¶
With older versions of Python, there is one macOS quirk that you need to beaware of: programs that talk to the Aqua window manager (in other words,anything that has a GUI) need to be run in a special way. Use pythonwinstead of python to start such scripts.
With Python 3.9, you can use either python or pythonw.
4.1.3. Configuration¶
Python on macOS honors all standard Unix environment variables such asPYTHONPATH
, but setting these variables for programs started from theFinder is non-standard as the Finder does not read your .profile
or.cshrc
at startup. You need to create a file~/.MacOSX/environment.plist
. See Apple’s Technical Document QA1067 fordetails.
For more information on installation Python packages in MacPython, see sectionInstalling Additional Python Packages.
4.2. The IDE¶
MacPython ships with the standard IDLE development environment. A goodintroduction to using IDLE can be found athttp://www.hashcollision.org/hkn/python/idle_intro/index.html.
4.3. Installing Additional Python Packages¶
There are several methods to install additional Python packages:
Packages can be installed via the standard Python distutils mode (
pythonsetup.pyinstall
).Many packages can also be installed via the setuptools extensionor pip wrapper, see https://pip.pypa.io/.
4.4. GUI Programming on the Mac¶
There are several options for building GUI applications on the Mac with Python.
PyObjC is a Python binding to Apple’s Objective-C/Cocoa framework, which isthe foundation of most modern Mac development. Information on PyObjC isavailable from https://pypi.org/project/pyobjc/.
The standard Python GUI toolkit is tkinter
, based on the cross-platformTk toolkit (https://www.tcl.tk). An Aqua-native version of Tk is bundled with OSX by Apple, and the latest version can be downloaded and installed fromhttps://www.activestate.com; it can also be built from source.
wxPython is another popular cross-platform GUI toolkit that runs natively onmacOS. Packages and documentation are available from https://www.wxpython.org.
PyQt is another popular cross-platform GUI toolkit that runs natively onmacOS. More information can be found athttps://riverbankcomputing.com/software/pyqt/intro.
4.5. Distributing Python Applications on the Mac¶
The standard tool for deploying standalone Python applications on the Mac ispy2app. More information on installing and using py2app can be foundat http://undefined.org/python/#py2app.
4.6. Other Resources¶
The MacPython mailing list is an excellent support resource for Python users anddevelopers on the Mac:
Another useful resource is the MacPython wiki:
This page tells you how to setup a Python programming environment for your Mac OS X computer and provides a step-by-step guide for creating and running a simple 'Hello, world' Python program. All of the software is freely available on the Web. These instructions are for MacOS X 10.13 (High Sierra), but the instructions for other versions of Mac OS X are similar.
Overview
The Python programming environment required by this booksite consists of:
- Python, that is, the Python compiler/interpreter.
- The Python standard libraries.
- IDLE, the Python Integrated DeveLopment Environment.
- The Tkinter, NumPy, and Pygame libraries, which are used by the booksite programs that do graphics or audio processing.
- The booksite library, that is, a set of modules that we developed specifically to support this booksite.
- The Terminal application that is bundled with Mac OS X.
Downloading and Installing Python, IDLE, Tkinter, NumPy, and Pygame
A version of Python 2 is bundled with Mac OS X. It's fine to use that version. IDLE, Tkinter, and NumPy are part of that version, but you must download and install Pygame yourself.
Perform these steps to download and install Pygame:
Open a Terminal window. To do that, click on the Spotlight Search icon on the right end of the menu bar. (It has the appearance of a magnifying glass.) In the resulting dialog box, type
Terminal.app
followed by the Enter key.In the Terminal window issue these commands to install pip, the Python package manager. Enter your computer's administrator password when prompted:
In the Terminal window issue this command to use pip to install Pygame:
Perform these steps to test your environment:
In the Terminal window issue the
python
command. You should see something like this:If you see that output, then your Python compiler/interpreter is working, and Tkinter, numpy, and IDLE are available.
At the Python
>>>
prompt, type the statementimport pygame
followed by the Enter key. If Python generates no error messages, then you have installed Pygame properly.At the Python
>>>
prompt, typeexit()
followed by the Enter key to exit Python.Close the Terminal window.
Downloading and Installing the Booksite Library
Perform these steps to download and install the booksite library:
Use your Web browser to download this introcs-1.0.zip file to your
/Users/yourusername/Downloads
directory.In the Finder, double click on the
/Users/yourusername/Downloads/introcs-1.0.zip
file to unzip the file, thus creating a directory named/Users/yourusername/Downloads/introcs-1.0
.Open a Terminal window.
At any time the Terminal application has a working directory. Initially the working directory is
/Users/yourusername
. In the Terminal window issue thecd Downloads
command to change your working directory to/Users/yourusername/Downloads
, and then issue thecd introcs-1.0
command to change your working directory to/Users/yourusername/Downloads/introcs-1.0
. (Incidentally, thecd ..
command changes your working directory to the 'parent' of the current working directory.)Issue the
ls
command to display the names of all files in your working directory. Make sure that a file namedsetup.py
is in your working directory.Issue the
python setup.py install --user
command. The computer copies the files defining the booksite modules to a directory where Python can find them, and writes status messages to your Terminal window to indicate its progress.
Note: The Mac Finder application uses the term folder to mean a container of documents and, perhaps, other folders. This document instead uses the equivalent Unix term directory. |
Perform these steps to test your installation of the booksite library:
In the Terminal window issue the
python
command.At the Python
>>>
prompt, type the statementimport stdio
followed by the Enter key. If Python generates no error messages, then you have installed the booksite library properly.At the Python
>>>
prompt, typeexit()
followed by the Enter key to exit Python.Close the Terminal window.
Configuring IDLE
So far you've downloaded and installed all of the software that you'll need. You should perform one more step before creating your first program: configure the IDLE programming environment. Follow these instructions:
Open a Terminal window.
In the Terminal window issue the command
idle
to launch IDLE.Click on the Python → Preferences... menu item.
Click on the General tab.
Click on the Open Edit Window radio button.
Click on the Ok button.
Close the IDLE window.
Close the Terminal window.
Composing Your First Program
Having installed Python, the Python standard libraries, IDLE, Tkinter, NumPy, Pygame, and the booksite libraries, and having configured IDLE, you are ready to compose your first Python program. Perform these instructions:
Using the Finder, create a directory named
/Users/yourusername/hello
.Open a Terminal window.
Issue the
cd hello
command to make the/Users/yourusername/hello
directory your working directory.Issue the command
idle &
to launch IDLE. Note the trailing ampersand. The trailing ampersand tells the computer to run theidleX
program in the background, thereby leaving your Terminal application free to handle additional commands while IDLE is running.In IDLE, type the four-line Python program helloworld.py exactly as it appears below. Use the arrow keys, mouse, or touchpad to move within the text that you have typed. Use the Delete key to delete text. Be careful; the smallest typing mistake might cause the program to fail.
When you are finished typing, in IDLE click on the File → Save... menu item to save the Python program. Save it in a file named
helloworld.py
in the directory/Users/yourusername/hello
. The file name is case sensitive, so make sure you use all lowercase letters.
Running Your First Program
The final step is to run your program. It is possible to run some Python programs from within IDLE, but you should run the programs associated with this booksite directly from a Terminal window. To do that, perform these steps:
Within the same Terminal window, issue the
ls
command to display the names of all files in the working directory. Confirm that the working directory contains yourhelloworld.py
file.Issue the
python helloworld.py
command to run your program. If the computer writes 'Hello, World' to the Terminal window, then the execution of yourhelloworld.py
program was successful. If the computer instead writes error messages, then use IDLE to correct your program, and issue thepython helloworld.py
command again. Repeat until your program runs successfully. If your program runs successfully the first time you try, then intentionally introduce an error into your program, just so you get some experience with correcting errors.Close the IDLE window.
Close the Terminal window.
Python Idle Download Mac Download
You now have installed and configured a reasonable Python environment, and have used it to compose and run a Python program. Congratulations! You are a Python programmer!
Downloading the Booksite Example Programs (optional)
We recommend that you download the booksite example programs, that is, the example Python programs that are presented incrementally throughout the booksite. Having done so, you can run those programs to help you learn about them. Perform these instructions:
Use your Web browser to download this introcs-python.zip file to your
/Users/yourusername/Downloads
directory.In the Finder, double-click on the
/Users/yourusername/Downloads/introcs-python.zip
file, thus creating the/Users/yourusername/Downloads/introcs-python
directory containing the booksite example programs. (It's OK to delete the/Users/yourusername/Downloads/introcs-python.zip
file after you have unzipped it.)
Then perform these steps to test your download of the booksite example programs:
Idle Python Download
Open a Terminal window.
Issue the
cd Downloads
andcd introcs-python
commands to make/Users/yourusername/Downloads/introcs-python
your working directory.Issue the
ls
command. Confirm that the working directory contains a file namedbouncingball.py
.Issue the
python bouncingball.py
command. If Python launches a stddraw window showing an animated bouncing ball, then your download of the booksite example programs was successful.Close the stddraw window.
Close the Terminal window.
Downloading the Booksite Example Data (optional)
We recommend that you download the booksite example data, that is, the data files used by the booksite example programs that are presented incrementally throughout the booksite. Perform these instructions:
Use your Web browser to download this introcs-data.zip file to your
/Users/yourusername/Downloads
directory.In the Finder, double-click on the
/Users/yourusername/Downloads/introcs-data.zip
file, thus creating the/Users/yourusername/Downloads/introcs-data
directory containing the booksite example data files. (It's OK to delete the/Users/yourusername/Downloads/introcs-data.zip
file after you have unzipped it.)
Downloading the Booksite Library: Part 2 (optional)
Previously on this page we described how to download and install the booksite library so Python can find it. Now we describe how to download the booksite library so you can find it — for the sake of studying the code that implements it, should you so desire. Perform these instructions:
Use your Web browser to download this stdlib-python.zip file to your
/Users/yourusername/Downloads
directory.In the Finder, double-click on the
/Users/yourusername/Downloads/stdlib-python.zip
file, thus creating the/Users/yourusername/Downloads/stdlib-python
directory containing the booksite library. (It's OK to delete the/Users/yourusername/Downloads/stdlib-python.zip
file after you have unzipped it.)
We invite you to study the code that implements the booksite library. But don't be concerned if some of the code is cryptic. The code that implements the booksite library uses some features of Python that are beyond the scope of the textbook and this booksite.
Q & A
Q. Why do I get the error ImportError: No module named stddraw
when I issue the command python program_that_uses_stddraw.py
?
A. You must issue the command python2.7 program_that_uses_stddraw.py
, as described above.
Q. I downloaded files using my browser, but can't find them. Where are they?
A. Many browsers by default place downloaded files in the directory /Users/yourusername/Downloads
.
Q. How do I break out of an infinite loop when running my program from the Terminal application?
Python Idle Download Mac Version
A. Type Ctrl-c. That is, while pressing the Ctrl key, type the c key.
Python Shell Download
Q. Must I use IDLE to create my Python programs? Can I use some other text editor?
Idle Python 3.4 Download
A. You need not use IDLE to create your Python programs; it is fine to use some other text editor. For example, it is reasonable to use the TextEdit editor that is bundled with Mac OS X. However if you do use some other text editor, then make sure you change its settings so it (1) uses a four-space indentation scheme, and (2) indents using spaces instead of tabs. The Wikipedia Comparison of text editors page provides summary descriptions of many text editors.