Windows set up Python (Anaconda): Difference between revisions

From OpenHatch wiki
Content added Content deleted
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...")
 
imported>Mako
No edit summary
Line 1: Line 1:
== Download and Install Python ==
== Download and install Python ==


We're going to be installing Python using a collection of software that includes Python that, as a collection, is called '''Anaconda'''. Anaconda includes the Python programming language and a bunch of different pieces of software that are useful for data science and analysis. Although the collection includes all free software, it is put together by a commercial company called '''Continuum Analytics'''.
# Visit [https://store.continuum.io/cshop/anaconda/ the Anaconda website] and download the Anaconda software. You may be prompted to enter your name and email.

# Follow the installation steps specified by the installer.
To install Python, you should:
#* If you have any difficulty, you can visit [http://docs.continuum.io/anaconda/install.html#windows-install the Anaconda documentation] for more info.

* Download and install [https://store.continuum.io/cshop/anaconda/ Anaconda]. Follow the link and click on the big blue <span style="background-color: #0000FF; color: #FFFFFF">Download Anaconda</span> button in the top right corner. The website will ask you for your email address when you log in. There's no reason to leave the checkbox marked saying that you want mail from Continuum.
* Use all of the defaults for installation, except make sure to '''check Make Anaconda the default Python'''.


== Test to make sure Python is working ==
== Test to make sure Python is working ==

Revision as of 03:21, 3 November 2014

Download and install Python

We're going to be installing Python using a collection of software that includes Python that, as a collection, is called Anaconda. Anaconda includes the Python programming language and a bunch of different pieces of software that are useful for data science and analysis. Although the collection includes all free software, it is put together by a commercial company called Continuum Analytics.

To install Python, you should:

  • Download and install Anaconda. Follow the link and click on the big blue Download Anaconda button in the top right corner. The website will ask you for your email address when you log in. There's no reason to leave the checkbox marked saying that you want mail from Continuum.
  • Use all of the defaults for installation, except make sure to check Make Anaconda the default Python.

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.