Skip to content

Commit 10e374c

Browse files
committed
Update README
1 parent 70ce4a2 commit 10e374c

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed

README.md

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,46 @@
1-
# cookbook-2nd-code
1+
# Code of the IPython Cookbook, Second Edition (2018)
2+
3+
This repository contains the Jupyter notebooks of the 100+ recipes of [*IPython Interactive Computing and Visualization Cookbook, Second Edition (2018)*](https://www.packtpub.com/big-data-and-business-intelligence/ipython-interactive-computing-and-visualization-cookbook-second-e), by [Cyrille Rossant](http://cyrille.rossant.net), *Packt Publishing*.
4+
5+
This repository is read-only: the source files are on the [cookbook-2nd](https://github.com/ipython-books/cookbook-2nd) repository.
6+
7+
## Getting started
8+
9+
1. [**Install** git](https://git-scm.com/downloads).
10+
11+
2. [**Download and install** Anaconda](https://www.anaconda.com/download/): choose the **Python 3.6, 64-bit** version for your operating system (macOS, Linux, or Windows).
12+
13+
3. **Open** a terminal (`cmd` on Windows).
14+
15+
4. **Clone** the repository:
16+
17+
```bash
18+
$ git clone https://github.com/ipython-books/cookbook-2nd-code.git
19+
$ cd cookbook-2nd-code
20+
```
21+
22+
5. **Create** the `cookbook` [conda environment](https://conda.io/docs/user-guide/tasks/manage-environments.html#creating-an-environment-from-an-environment-yml-file):
23+
24+
```bash
25+
conda env create -f environment.yml
26+
```
27+
28+
6. **Activate** the environment:
29+
30+
* On macOS and Linux:
31+
32+
```bash
33+
source activate cookbook
34+
```
35+
36+
* On Windows:
37+
38+
```bash
39+
activate cookbook
40+
```
41+
42+
7. **Launch** the [Jupyter Notebook](http://jupyter.org/install.html):
43+
44+
```bash
45+
$ jupyter notebook
46+
```

0 commit comments

Comments
 (0)