项目作者: jrbourbeau

项目描述 :
MadPy Dask talk materials
高级语言: Jupyter Notebook
项目地址: git://github.com/jrbourbeau/madpy-dask.git
创建时间: 2019-02-07T00:14:00Z
项目社区:https://github.com/jrbourbeau/madpy-dask

开源协议:MIT License

下载


Parallel Computing in Python with Dask @ MadPy

This repository contains the materials for my “Parallel Computing in Python with Dask” talk at the Madison Python (MadPy) Meetup.

An interactive version of the notebook from this talk is available by clicking the “launch binder” button below:

Binder

Setup

Step 1: Create Conda environment

A Conda environment with the dependencies needed to run the notebook from this talk can be created with:

  1. conda env create --name madpy-dask --file binder/environment.yml

Step 2: Activate Conda environment

Activate the Conda environment:

  1. conda activate madpy-dask

(Optional) Step 3: Install JupyterLab extension

The Dask JupyterLab extension can be installed with:

  1. jupyter labextension install dask-labextension

inside the activated Conda environment.

Step 4: Run Jupyter

The notebook can then be launched with:

  1. jupyter lab dask-demo.ipynb

Additional Resources