Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate README.md @ 31:b9be404d9205
Use Python 3 by default
author | Brendan Rius <brendan@omixy.com> |
---|---|
date | Sat, 30 Apr 2016 11:18:38 +0100 |
parents | ee3ac764f5f0 |
children | fae3b8f7cbfb |
rev | line source |
---|---|
0 | 1 # Minimal C kernel for Jupyter |
2 | |
16
63084d5da27c
Update README.md after #2 and to move the requirements to the correct section
Brendan Rius <brendan@omixy.com>
parents:
13
diff
changeset
|
3 ## Use with Docker (recommended) |
13 | 4 |
5 * `docker pull brendanrius/jupyter-c-kernel` | |
6 * `docker run -d -p 8888:8888 brendanrius/jupyter-c-kernel` | |
7 * Go to [http://localhost:8888](http://localhost:8888) (or your VM address if you are using Docker Machine) | |
8 | |
16
63084d5da27c
Update README.md after #2 and to move the requirements to the correct section
Brendan Rius <brendan@omixy.com>
parents:
13
diff
changeset
|
9 ## Manual installation |
63084d5da27c
Update README.md after #2 and to move the requirements to the correct section
Brendan Rius <brendan@omixy.com>
parents:
13
diff
changeset
|
10 |
17 | 11 * Make sure you have the following requirements installed: |
12 * gcc | |
13 * jupyter | |
31 | 14 * python 3 |
17 | 15 * pip |
26
06e1c3c43532
Add alternative installation using wget and sh
Manoel Vilela <manoel_vilela@engineer.com>
parents:
18
diff
changeset
|
16 |
06e1c3c43532
Add alternative installation using wget and sh
Manoel Vilela <manoel_vilela@engineer.com>
parents:
18
diff
changeset
|
17 ### Step-by-step: |
0 | 18 * `git clone git@github.com:brendan-rius/jupyter-c-kernel.git` |
10 | 19 * `pip install jupyter-c-kernel` |
0 | 20 * `cd jupyter-c-kernel` |
16
63084d5da27c
Update README.md after #2 and to move the requirements to the correct section
Brendan Rius <brendan@omixy.com>
parents:
13
diff
changeset
|
21 * `jupyter-kernelspec install c_spec/` |
18 | 22 * `jupyter-notebook`. Enjoy! |
6 | 23 |
26
06e1c3c43532
Add alternative installation using wget and sh
Manoel Vilela <manoel_vilela@engineer.com>
parents:
18
diff
changeset
|
24 ### Easy installation for Unix user: |
06e1c3c43532
Add alternative installation using wget and sh
Manoel Vilela <manoel_vilela@engineer.com>
parents:
18
diff
changeset
|
25 |
27
ee3c3cb52b25
Add specials args to avoid syntax errors with wget
Manoel Vilela <manoel_vilela@engineer.com>
parents:
26
diff
changeset
|
26 * `wget -O - https://raw.githubusercontent.com/brendan-rius/jupyter-c-kernel/master/install.sh | sh` |
26
06e1c3c43532
Add alternative installation using wget and sh
Manoel Vilela <manoel_vilela@engineer.com>
parents:
18
diff
changeset
|
27 |
6 | 28 ## Example of notebook |
29 | |
30 ![Example of notebook](example-notebook.png?raw=true "Example of notebook") | |
19 | 31 |
32 ## License | |
33 | |
34 [MIT](LICENSE.txt) |