Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

pluradj/tutorial

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Jupyter Widget Ecosystem

Tutorial, JupyterCon 2017

Installation

The code in the tutorial has been written using Python 3; though most of it may also work with Python 2.7.

We strongly recommend using the Anaconda Python distribution. You can install either the full anaconda distribution (very extensive, but large) or miniconda (much smaller, only essential packages).

There are download instructions below for installation using pip, which should work with any Python distribution.

anaconda/miniconda installation instructions

The steps below will get you a working environment.

conda create -n widgets-tutorial notebook=5.0 numpy python=3.6 scikit-image scipy

# Mac/Linux:
source activate widgets-tutorial

# Windows:
activate widgets-tutorial

# Install widgets from conda-forge, which has ipywidgets 7.0
conda install -c conda-forge ipywidgets=7.0 traittypes

# Create a kernel for this environment
ipython kernel install --name widgets-tutorial --display-name widgets-tutorial --sys-prefix

pip installation instructions

If you are not using the anaconda python distribution, please use the instructions below.

pip install ipywidgets
jupyter nbextension enable --sys-prefix --py widgetsnbextension

Tutorial materials

To get the tutorial materials, clone this repository.

Running into trouble?

Please let us know! You can open an issue on this repository by clicking "Issues" under the repo name on GitHub, then the "New Issue" button in the upper right.

About

A tutorial for widgets

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 98.8%
  • Python 1.2%