Skip to content

Commit d354252

Browse files
author
Martin Durant
committed
Minimal updates for scipy
1 parent 972fd99 commit d354252

6 files changed

+19
-17
lines changed

05-distributed-dataframes-and-efficiency.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"\n",
1212
"# Personal Dask Cluster\n",
1313
"\n",
14-
"Go to http://35.192.17.108/hub/login for your own Dask cluster. Use your first and last name provided to PyCon for the username and \"dask\" for the password.\n",
14+
"Go to http://<TBD>/hub/login for your own Dask cluster. Use your first and last name provided to SciPy for the username and \"dask\" for the password.\n",
1515
"(We don't actually do any authentication).\n",
1616
"\n",
1717
"# Distributed DataFrames and Efficiency\n",
@@ -31,7 +31,7 @@
3131
"metadata": {},
3232
"outputs": [],
3333
"source": [
34-
"from pycon_utils import make_cluster\n",
34+
"from scipy_utils import make_cluster\n",
3535
"from dask.distributed import Client"
3636
]
3737
},

06-distributed-advanced.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"metadata": {},
2626
"outputs": [],
2727
"source": [
28-
"from pycon_utils import make_cluster\n",
28+
"from scipy_utils import make_cluster\n",
2929
"from dask.distributed import Client"
3030
]
3131
},

07-machine-learning.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
"metadata": {},
251251
"outputs": [],
252252
"source": [
253-
"from pycon_utils import make_cluster\n",
253+
"from scipy_utils import make_cluster\n",
254254
"import dask_ml.joblib\n",
255255
"from dask.distributed import Client\n",
256256
"\n",

README.md

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Parallel Data Analysis with Dask
22

3-
Materials for the [Dask tutorial at PyCon 2018](https://us.pycon.org/2018/schedule/presentation/47/).
3+
Materials for the [Dask tutorial at SciPy 2018](https://scipy2018.scipy.org/ehome/index.php?eventid=299527&tabid=711308&cid=2229599&sessionid=21547348&sessionchoice=1&).
44

55
## First Time Setup
66

7-
If you don't have `git` installed, you can download a ZIP copy of the repository using the green button above.
8-
Note that the file will be called `dask-tutorial-pycon-2018-master`, instead of `dask-tutorial-pycon-2018`.
7+
If you don't have `git` installed, you can download a ZIP copy of the repository using the green button
8+
("Clone or Download"->"Download ZIP") above.
9+
In this case the file will be called `dask-tutorial-scipy-2018-master`, instead of `dask-tutorial-scipy-2018`.
910
Adjust the commands below accordingly.
1011

1112

@@ -15,17 +16,17 @@ Adjust the commands below accordingly.
1516
# Update conda
1617
conda update conda
1718
18-
# Clone the repository. Or download the ZIP and add `-master` to the name.
19-
git clone https://github.com/TomAugspurger/dask-tutorial-pycon-2018
19+
# Clone the repository, or download the ZIP and decompress
20+
git clone https://github.com/martindurant/dask-tutorial-scipy-2018
2021
2122
# Enter the repository
22-
cd dask-tutorial-pycon-2018
23+
cd dask-tutorial-scipy-2018
2324
2425
# Create the environment
2526
conda env create
2627
2728
# Activate the environment
28-
conda activate dask-pycon
29+
conda activate dask-scipy
2930
3031
# Download data
3132
python prep_data.py
@@ -37,11 +38,11 @@ jupyter lab
3738
If you aren't using conda
3839

3940
```
40-
# Clone the repository. Or download the ZIP and add `-master` to the name.
41-
git clone https://github.com/TomAugspurger/dask-tutorial-pycon-2018
41+
# Clone the repository, or download the ZIP and decompress
42+
git clone https://github.com/martindurant/dask-tutorial-scipy-2018
4243
4344
# Enter the repository
44-
cd dsak-tutorial-pycon-2018
45+
cd dsak-tutorial-scipy-2018
4546
4647
# Create a virtualenv
4748
python3 -m venv .env
@@ -63,5 +64,6 @@ jupyter lab
6364

6465
## Connect to the Cluster
6566

66-
We have a [pangeo](https://github.com/pangeo-data/pangeo) deployment running that'll provide everyone with their own cluster to try out Dask on some larger problems.
67-
You can log into the cluster by going to:
67+
We have a [pangeo](https://github.com/pangeo-data/pangeo) deployment running that'll provide everyone with their own
68+
cluster to try out Dask on some larger problems.
69+
You can log into the cluster by going to: TBD

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: dask-pycon
1+
name: dask-scipy
22
dependencies:
33
- dask
44
- dask-ml
File renamed without changes.

0 commit comments

Comments
 (0)