Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate README.md @ 13:086c0d0da045
Add docker pull in readme
author | Brendan Rius <brendan@omixy.com> |
---|---|
date | Sat, 26 Mar 2016 15:39:37 +0000 |
parents | a804d1645b0a |
children | 63084d5da27c |
rev | line source |
---|---|
0 | 1 # Minimal C kernel for Jupyter |
2 | |
3 ## Requirements | |
4 | |
5 * gcc | |
6 * jupyter | |
10 | 7 * python |
8 * pip | |
0 | 9 |
10 ## Installation | |
11 | |
13 | 12 ### Via Docker (recommended) |
13 | |
14 * `docker pull brendanrius/jupyter-c-kernel` | |
15 * `docker run -d -p 8888:8888 brendanrius/jupyter-c-kernel` | |
16 * Go to [http://localhost:8888](http://localhost:8888) (or your VM address if you are using Docker Machine) | |
17 | |
11
ed81f9f93bde
Add basic docker instructions
Brendan Rius <brendan@omixy.com>
parents:
10
diff
changeset
|
18 ### Manually |
ed81f9f93bde
Add basic docker instructions
Brendan Rius <brendan@omixy.com>
parents:
10
diff
changeset
|
19 |
0 | 20 * `git clone git@github.com:brendan-rius/jupyter-c-kernel.git` |
10 | 21 * `pip install jupyter-c-kernel` |
0 | 22 * `cd jupyter-c-kernel` |
23 * `jupyter-kernelspec install c_kernel` | |
24 | |
25 ## Usage | |
26 | |
6 | 27 * Open the example notebook: `jupyter-notebook example-notebook.ipynb` |
0 | 28 * Enjoy! |
6 | 29 |
30 ## Example of notebook | |
31 | |
32 ![Example of notebook](example-notebook.png?raw=true "Example of notebook") | |
33 |