Skip to content

Latest commit

 

History

History
32 lines (16 loc) · 978 Bytes

installation_instructions.md

File metadata and controls

32 lines (16 loc) · 978 Bytes

Installation Instructions for the workshop

Package Manager: Anaconda

We strongly recommend using Anaconda. It can be downloaded from here: https://www.continuum.io/downloads

It comes with jupyter notebook which is the IDE we will be using for the workshop

We recommend using the Python 3.5 version.

Required packages

Run the following script at the command prompt to check if you have all the requisite packages installed. To run, please execute the following command from the command prompt

$ python check_env.py

The output will indicate if any of the libraries are missing or need to be updated.

Any package that is missing can be installed by running the command at the command prompt

$ pip install <package_name> 

Any package that needs to be upgraded can be upgraded by running the command at the command prompt

$ pip install --upgrade <package_name> 

Replace <package_name> with the package that needs to be installed/upgraded.