Skip to content

Commit

Permalink
Update dates. More install instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Skipper Seabold committed Apr 29, 2018
1 parent 7577f7a commit 1afec8d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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 [email protected]:jseabold/odsc-west-python-2017
git clone [email protected]: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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions environment.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: odsc-west-2017
name: odsc-east-2018
channels:
- conda-forge
- defaults
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
Expand Down

0 comments on commit 1afec8d

Please sign in to comment.