Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

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