📚 The CoCalc Library - books, templates and other resources
License: OTHER
1# Preparation23## Format45The tutorial consists of lecture segments, followed by hands-on6exercises. We strongly encourage you to bring a laptop with all the7required packages installed in order to participate fully.89## Software required1011- Python1213If you are new to Python, please install the14[Anaconda distribution](https://www.continuum.io/downloads) for15**Python version 3** (available on OSX, Linux and Windows).16Everyone else, feel free to use your favorite distribution, but17please ensure the requirements below are met:1819- `numpy` >= 1.1020- `scipy` >= 0.1521- `matplotlib` >= 1.522- `skimage` >= 0.1223- `sklearn` >= 0.172425In the next section below, we provide a test script to confirm the26version numbers on your system.2728- Jupyter2930The lecture material includes Jupyter notebooks. Please follow the31[Jupyter installation instructions](http://jupyter.readthedocs.io/en/latest/install.html),32and ensure you have version 4 or later:3334```bash35$ jupyter --version364.1.037```3839## Test your setup4041Please run the following commands inside of Python:4243```44import numpy as np45import scipy as sp46import matplotlib as mpl47import skimage48import sklearn4950for module in (np, sp, mpl, skimage, sklearn):51print(module.__name__, module.__version__)52```535455On my computer, I see (but your version numbers may differ):5657```58numpy 1.11.059scipy 0.17.060matplotlib 1.5.161skimage 0.12.362sklearn 0.17.163```646566**If you do not have a working setup, please contact the instructors.67We have a limited number of hosted online accounts available for68attendees.**6970## Download lecture material7172There are two ways of downloading the lecture materials:73741. Get the [ZIP file from GitHub](https://github.com/scikit-image/skimage-tutorials/archive/master.zip)752. Clone the repository at76[https://github.com/scikit-image/skimage-tutorials](https://github.com/scikit-image/skimage-tutorials)777879