Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132957 views
License: OTHER
1
2
# Preparation
3
4
## Format
5
6
The tutorial consists of lecture segments, followed by hands-on
7
exercises. We strongly encourage you to bring a laptop with all the
8
required packages installed in order to participate fully.
9
10
## Software required
11
12
- Python
13
14
If you are new to Python, please install the
15
[Anaconda distribution](https://www.continuum.io/downloads) for
16
**Python version 3** (available on OSX, Linux and Windows).
17
Everyone else, feel free to use your favorite distribution, but
18
please ensure the requirements below are met:
19
20
- `numpy` >= 1.10
21
- `scipy` >= 0.15
22
- `matplotlib` >= 1.5
23
- `skimage` >= 0.12
24
- `sklearn` >= 0.17
25
26
In the next section below, we provide a test script to confirm the
27
version numbers on your system.
28
29
- Jupyter
30
31
The lecture material includes Jupyter notebooks. Please follow the
32
[Jupyter installation instructions](http://jupyter.readthedocs.io/en/latest/install.html),
33
and ensure you have version 4 or later:
34
35
```bash
36
$ jupyter --version
37
4.1.0
38
```
39
40
## Test your setup
41
42
Please run the following commands inside of Python:
43
44
```
45
import numpy as np
46
import scipy as sp
47
import matplotlib as mpl
48
import skimage
49
import sklearn
50
51
for module in (np, sp, mpl, skimage, sklearn):
52
print(module.__name__, module.__version__)
53
```
54
55
56
On my computer, I see (but your version numbers may differ):
57
58
```
59
numpy 1.11.0
60
scipy 0.17.0
61
matplotlib 1.5.1
62
skimage 0.12.3
63
sklearn 0.17.1
64
```
65
66
67
**If you do not have a working setup, please contact the instructors.
68
We have a limited number of hosted online accounts available for
69
attendees.**
70
71
## Download lecture material
72
73
There are two ways of downloading the lecture materials:
74
75
1. Get the [ZIP file from GitHub](https://github.com/scikit-image/skimage-tutorials/archive/master.zip)
76
2. Clone the repository at
77
[https://github.com/scikit-image/skimage-tutorials](https://github.com/scikit-image/skimage-tutorials)
78
79