Boston Python Workshop 8/Friday/OSX set up Python: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Jesstess
(Created page with "OS X ships with Python installed, so the goal of this page is to make sure you can start a Terminal and run Python from the command line. <ol> <li>Start up a Terminal. You c...")
 
imported>Jesstess
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[File:Python-logo.png|300px]]
OS X ships with Python installed, so the goal of this page is to make sure you can start a Terminal and run Python from the command line.

Lucky for us, OS X comes with Python installed! All we need to do is make sure we have an appropriate version of Python installed and make sure we can start a Terminal and run Python from the command line.

== Checking your Python installation ==


<ol>
<ol>
Line 5: Line 9:


<br />
<br />
This Terminal contains something called a command prompt. This command 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 command prompt.
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.
</li>
</li>
<li>Test your Python install at the command prompt. Type
<li>Test your Python install at the command prompt. Type
Line 13: Line 17:
</pre>
</pre>


and hit enter. You should see something like
and press Enter. You should see something like
<pre>
<pre>
Python 2.7.1 (r261:67515, Feb 11 2010, 00:51:29)
Python 2.7.5 (r261:67515, Feb 11 2010, 00:51:29)
[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 21: Line 25:
</pre>
</pre>


* 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. If the Python version number (2.7.5 in the example above) is not a number between 2.4 and 2.7 (ignoring the number after the second dot), tell a staff member.


* If the Python version number (2.7.1 in the example above) is not a number between 2.4 and 2.7 (ignoring the number after the second dot), tell a staff member.
</li>
</li>
<li>To exit the Python prompt, type
<li>To exit the Python prompt, type
Line 31: Line 36:
</pre>
</pre>


and press Enter. This will take you back to the OS X command prompt.</li>
and press Enter. This will take you back to the OS X terminal prompt.</li>
</ol>
</ol>


'''Success!'''
== Success! ==


You have tested your Python installation.
You have tested your Python installation.

[[File:Champagne.png|100px]][[File:Party.png|125px]]



[[Boston Python Workshop 8/Friday|&laquo; Back to the Friday setup page]]
[[Boston Python Workshop 8/Friday|&laquo; Back to the Friday setup page]]

Latest revision as of 00:34, 12 July 2013

Lucky for us, OS X comes with Python installed! All we need to do is make sure we have an appropriate version of Python installed and make sure we can start a Terminal and run Python from the command line.

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 2.7.5 (r261:67515, Feb 11 2010, 00:51:29) 
    [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.

    Check the Python version in your Terminal output. If the Python version number (2.7.5 in the example above) is not a number between 2.4 and 2.7 (ignoring the number after the second dot), tell a staff member.

  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 Friday setup page