Windows set up Python (Anaconda)

From OpenHatch wiki
Revision as of 21:27, 23 September 2014 by imported>Ehashman (Created page with "== Download and Install Python == # Visit [https://store.continuum.io/cshop/anaconda/ the Anaconda website] and download the Anaconda software. You may be prompted to enter y...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Download and Install Python

  1. Visit the Anaconda website and download the Anaconda software. You may be prompted to enter your name and email.
  2. Follow the installation steps specified by the installer.

Test to make sure Python is working

  1. Open a Command Prompt. You can do this by hitting WIN+R, and typing in cmd.
    • This is called a "command line interface"---a way of interacting with your computer by typing.
  2. Test your Python install at the command prompt. Type
    python
    and hit enter. You should see something like
Type "help", "copyright", "credits" or "license" for more information.
>>>
  1. 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.
  2. To exit the Python prompt, type
    exit()
    and press Enter. This will take you back to the Windows command prompt.

Success!

You have Python installed and configured.

More information

If you do not want to use the Anaconda installer, you can take a look at this page. However, set up will be significantly more difficult.