Installation Website
Anaconda is a distribution of Python. It provides a Python programming environment, the Jupyter notebook environment, and the conda package management system.
Anaconda
. On Windows, press the Windows key and type Anaconda). If no option comes up, you most likely don’t have it installed.If you have Anaconda installed, chances are that you need to update to the most recent version. So let’s go ahead and do it.
First, let’s check the most recent version of Anaconda available. Go to the Anaconda Download Page.
Under “Download Anaconda Distribution” you should be able to see the current version.
Now it is time to check what version you have installed in your computer. Open the Anaconda Prompt (On Mac, press Cmd + Space and type Anaconda
. On Windows, press the Windows key and type Anaconda), type conda --version
and press enter. If the output has the same version as the one on the website, you are good to go!
If you need to update your version, the easiest way is also on the Anaconda Prompt:
conda update -n root conda
and press Enter.Wait for the process to finish. It takes some time.
conda update --all
and press Enterconda --version
and press Enter. The output should be the same version as the one in the webpage.Download Anaconda at: https://www.anaconda.com/download/
Click on the Python 3.+ button:
Click on the installer file you just downloaded:
You should see the initial install screen. Click Next
:
I Agree
:Next
:Next
:Next
:The installation may take a while, so go grab a snack or check your email:
When finished, the window will list the location of the Anaconda installer. Click Next
:
Install Microsoft VSCode
. If it is already installed, click Skip
:Finish
:Open a terminal window and type python
. The terminal should print something like:
```python
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.
>>>
```
Type exit()
to leave python
If you do not see a similar response to the one above or have some kind of error, please double check our Issues when Installing Python issue to see if we have already worked out a solution to your problem. Otherwise, please contact an instructor.
Download Anaconda at: https://www.anaconda.com/download/
Click on the Python 3.+ button:
In case it doesn’t open automatically, Click on the installer file you just downloaded:
Click Continue
:
Continue
:Continue
again:I Agree
:Install
. Only change the install location if you know what you are doing:Install Microsoft VSCode
. If it is already installed, click Continue
:Close
:Move to Trash
:Open the OS/X terminal and type python
. The terminal should print something like:
```python
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.
>>>
```
Type exit()
to leave python
If you do not see a similar response to the one above or have some kind of error, please double check our Issues when Installing Python issue to see if we have already worked out a solution to your problem. Otherwise, please contact an instructor.