Skip to content

Latest commit

 

History

History
77 lines (44 loc) · 3.15 KB

python.md

File metadata and controls

77 lines (44 loc) · 3.15 KB

Anaconda is a distribution of Python. It provides a Python programming environment, the Jupyter notebook environment, and the conda package management system. This guide was written for Python 3.6, but you should download the latest Python (currently 3.7).

Download Python 3.+:

  1. Download Anaconda at: https://www.anaconda.com/download/

  2. Click on the Python 3.+ button:

Anaconda download webpage with 3.6 button highlighted

Install

  1. Click on the installer:

anaconda installer icon, which is a green circle/stylized anaconda

  1. You should see the initial install screen. Click Next:

initial installation image

  1. Accept the license by clicking I Agree:

licence agreement

  1. Install Anaconda only for yourself by choosing the just for me radio button. Click Next:

radio menu, select the 1st "just me" option

  1. Choose the location to install anaconda (the default is fine). Click Next:

text box with path for default Anaconda install and browse button

  1. On the Advanced Installation options, page select both check boxes: "Add Anaconda to my PATH environment variable" and "Register Anaconda as my default Python". Then click Next:

advanced installation options window. Has two check boxes: Add anaconda to PATH environment variables, and Register Anaconda as my default Python

  1. The installation may take a while, so go grab a snack or check email:

installation progress bar

  1. When finished, the window will list the location of the Anaconda installer. Click Next:

Full progress bar and printed output listing location of Anaconda files

  1. Click Skip if VSCode is already installed:

menu option to also install vscode

  1. This is the final window. Click Finish:

final installation window for anaconda, has two check boxes: learn more and learn how to get started

Test

Open a windows or OS/X terminal and type python. The terminal should print something like:

  • OS/X:

    Python 3.6.3 |Anaconda, Inc.| (default, Dec  5 2017, 17:30:25) 
    [GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 
  • Windows:

    Python 3.6.5 |Anaconda, Inc.| (default, Mar 29 2018, 13:32:41) [MSC v.1900 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 

References