O'Reilly Introduction to Python/Section 1/OSX set up Python: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Jesstess
No edit summary
imported>Jesstess
No edit summary
Line 6: Line 6:


__TOC__
__TOC__

== Download and install Python ==

* <b>If you are running OS X version 10.6 or later</b>, click https://www.python.org/ftp/python/3.4.1/python-3.4.1-macosx10.6.dmg to download the Python installer.
* <b>If you are running OS X version 10.5</b>, click and download the Python installer from [https://www.python.org/ftp/python/3.4.1/python-3.4.1-macosx10.5.dmg this link instead].
* <b>If you have a version of OS X older than 10.5</b>, please upgrade to a newer version of OS X before installing Python.

Once the download is complete, double-click on the installer to run it and complete the installation.


== Checking your Python installation ==
== Checking your Python installation ==
Line 23: Line 31:
and press Enter. You should see something like
and press Enter. You should see something like
<pre>
<pre>
Python 2.7.5 (r261:67515, Feb 11 2010, 00:51:29)
Python 3.4.1 (v3.4.1:d047928ae3f6, May 13 2013, 12:45:22)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Type "help", "copyright", "credits" or "license" for more information.
Line 30: Line 38:


You just started Python! The <code>>>></code> indicates that you are at a new type of prompt -- a Python prompt. The command prompt let's you navigate your computer and run programs, and the Python prompt lets you write and run Python code interactively.<br />
You just started Python! The <code>>>></code> indicates that you are at a new type of prompt -- a Python prompt. The command prompt let's you navigate your computer and run programs, and the Python prompt lets you write and run Python code interactively.<br />

Check the Python version in your Terminal output (the version in the example above is 2.7.5). It needs to be a version between Python 2.5 and Python 2.7 for this class. If you have too old or too new a version, please visit http://python.org/ftp/python/2.7.5/python-2.7.5-macosx10.6.dmg to download and install Python version 2.7.5.


</li>
</li>

Revision as of 02:21, 27 May 2014

We are going to install Python version 3.4.1.

If you already have Python installed, check the Python version: if the version number starts with a 3 (as opposed to a 2), you can use it for this class and can skip to checking your Python installation.

Download and install Python

Once the download is complete, double-click on the installer to run it and complete the installation.

Checking your Python installation

  1. Start up a Terminal. You can find the Terminal application through Spotlight, or navigate to Applications/Utilities/Terminal.

    This Terminal gives you something called a terminal prompt. This terminal prompt is another way of navigating your computer and running programs -- just textually instead of graphically. We are going to be running Python and Python scripts from this terminal prompt.
  2. Test your Python install at the command prompt. Type
    python
    

    and press Enter. You should see something like

    Python 3.4.1 (v3.4.1:d047928ae3f6, May 13 2013, 12:45:22) 
    [GCC 4.2.1 (Apple Inc. build 5646)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>>
    

    You just started Python! The >>> indicates that you are at a new type of prompt -- a Python prompt. The command prompt let's you navigate your computer and run programs, and the Python prompt lets you write and run Python code interactively.

  3. To exit the Python prompt, type
    exit()
    
    and press Enter. This will take you back to the OS X terminal prompt.

Success!

You have tested your Python installation.

« Back to the Section 1 main page