Python on OSX: Difference between revisions

no edit summary
imported>Paulproteus
No edit summary
imported>Jesstess
No edit summary
Line 2:
 
<ol>
<li>Start up a Terminal. You can find the Terminal application through Spotlight, or navigate to Applications/Utilities/Terminal</li>.
 
The 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.
</li>
<li>Test your Python install at the command prompt. Type
 
<pre>
python
</pre>
 
and hit enter. You should see something like
Line 14 ⟶ 19:
>>>
</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.
</li>
<li>To exit the Python prompt, type
 
<pre>
exit()
</pre>
 
and press Enter. This will take you back to the TerminalOS X command prompt.</li>
</ol>
 
Anonymous user