Skillshare intro to Python/Unit 1/Linux set up Python

Revision as of 01:58, 3 June 2013 by imported>Jesstess

Lucky for us, Linux 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.

If you need help or have questions during this step, don't hesitate to ask!

  1. Start up a Terminal. You can find the Terminal application at Applications/Accessories/Terminal, or it may already be on your menu bar.

    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 (r252:60911, Jan 24 2011, 17:44:40) 
    [GCC 4.3.2] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 
    
  3. You just started Python! The >>> indicates that you are at a new type of prompt -- a Python prompt. The command prompt lets 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 (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.
  4. To exit the Python prompt, type
    exit()
    
    and press Enter. This will take you back to the Linux command prompt.

Success!

You have tested your Python installation.

  

« Back to the Unit 1 main page