Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Latest commit

 

History

History
19 lines (12 loc) · 629 Bytes

File metadata and controls

19 lines (12 loc) · 629 Bytes

Splash Data Science Exercises

Setup

Before anything else, clone this repository to your local computer.

  1. First, make sure you have Python and pip installed.
  2. Install virtualenv: sudo pip install virtualenv virtualenvwrapper
  3. Create a local virtual env: virtualenv venv
  4. Activate the virtual env: source venv/bin/activate
  5. Install requirements: pip install -r requirements.txt

Run the Exercises

From the root folder of this repository, run jupyter notebook. This should open a browser up for you, but if not, just go to http://localhost:8888.

Tear down

When you're done, just do deactivate