diff --git a/README.md b/README.md index bda0310..4e303f1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Introduction to Python for Data Science -This is the ODSC West '17 workshop Introduction to Python for Data Science. +This is the ODSC East '18 workshop Introduction to Python for Data Science. ## Outcomes @@ -19,12 +19,12 @@ If you would like to code along during the workshop, follow these steps. Clone this repository. To do so at the command line, type ```bash -git clone git@github.com:jseabold/odsc-west-python-2017 +git clone git@github.com:jseabold/odsc-east-python-2018 ``` Otherwise, you can download the code directly from GitHub. -The day before the conference, you will want to check for any code changes. From the directory that containers the code, run +The day before the conference, you will want to check for any code changes. From the directory that contains the code, run ``` git pull @@ -33,9 +33,20 @@ git pull Before you arrive, also install all of the pre-requisite packages. **You may not be able to rely on conference Wi-Fi to do this**. -```python +```bash conda env create -f environment.yaml -source activate odsc-west-2017 +``` + +If you are on macOS or linux, run in the terminal + +```bash +source activate odsc-east-2018 +``` + +If you are on windows, run at the command prompt + +```bash +activate odsc-east-2018 ``` Make sure you can run the Jupyter Notebooks diff --git a/environment.yaml b/environment.yaml index bbc98e9..cf2d73b 100644 --- a/environment.yaml +++ b/environment.yaml @@ -1,4 +1,4 @@ -name: odsc-west-2017 +name: odsc-east-2018 channels: - conda-forge - defaults @@ -6,7 +6,7 @@ dependencies: - bokeh=0.12.9 - ipython=6.2.1 - matplotlib=2.1.0 -- notebook=5.2.0 +- notebook=5.4.1 - numpy=1.13.3 - pandas=0.20.3 - pip=9.0.1