📚 The CoCalc Library - books, templates and other resources
License: OTHER
[📂 Download lesson notebook](./0_installation.ipynb)123# Preparation45## Format67The tutorial consists of lecture segments, followed by hands-on8exercises. We strongly encourage you to bring a laptop with all the9required packages installed in order to participate fully.1011## Software required1213- Python1415If you are new to Python, please install the16[Anaconda distribution](https://www.continuum.io/downloads) for17**Python version 3** (available on OSX, Linux and Windows).18Everyone else, feel free to use your favorite distribution, but19please ensure the requirements below are met:2021- `numpy` >= 1.1022- `scipy` >= 0.1523- `matplotlib` >= 1.524- `skimage` >= 0.1225- `sklearn` >= 0.172627In the next section below, we provide a test script to confirm the28version numbers on your system.2930- Jupyter3132The lecture material includes Jupyter notebooks. Please follow the33[Jupyter installation instructions](http://jupyter.readthedocs.io/en/latest/install.html),34and ensure you have version 4 or later:3536```bash37$ jupyter --version384.1.039```4041## Test your setup4243Please run the following commands inside of Python:4445```46import numpy as np47import scipy as sp48import matplotlib as mpl49import skimage50import sklearn5152for module in (np, sp, mpl, skimage, sklearn):53print(module.__name__, module.__version__)54```555657E.g., on my computer, I see:5859```60numpy 1.11.061scipy 0.17.062matplotlib 1.5.163skimage 0.12.364sklearn 0.17.165```666768**If you do not have a working setup, please contact the instructors.69We have a limited number of hosted online accounts available for70attendees.**7172## Downloading lecture material7374There are two ways of downloading the lecture materials:7576a) Get the `ZIP file from GitHub77<https://github.com/scikit-image/skimage-tutorials/archive/master.zip>`__78b) Clone the repository at79https://github.com/scikit-image/skimage-tutorial808182