comparison README.md @ 64:37ded774d876

Update README typo and clarification fixes typo, and provides example for "URL containing the token". committer: GitHub <noreply@github.com>
author Jason B <jasonkingsley.brown@gmail.com>
date Thu, 10 Aug 2017 14:00:51 -0500
parents dcc9eecfc666
children b5fd860bd157
comparison
equal deleted inserted replaced
63:dcc9eecfc666 64:37ded774d876
2 2
3 ## Use with Docker (recommended) 3 ## Use with Docker (recommended)
4 4
5 * `docker pull brendanrius/jupyter-c-kernel` 5 * `docker pull brendanrius/jupyter-c-kernel`
6 * `docker run -p 8888:8888 brendanrius/jupyter-c-kernel` 6 * `docker run -p 8888:8888 brendanrius/jupyter-c-kernel`
7 * Copy the given URL containing the token, and browse to it. 7 * Copy the given URL containing the token, and browse to it. For instance:
8
9 ```
10 Copy/paste this URL into your browser when you connect for the first time,
11 to login with a token:
12 http://localhost:8888/?token=66750c80bd0788f6ba15760aadz53beb9a9fb4cf8ac15ce8
13 ```
8 14
9 ## Manual installation 15 ## Manual installation
10 16
11 * Make sure you have the following requirements installed: 17 * Make sure you have the following requirements installed:
12 * gcc 18 * gcc
42 cd jupyter-c-kernel 48 cd jupyter-c-kernel
43 docker run -v $(pwd):/jupyter/jupyter_c_kernel/ -p 8888:8888 brendanrius/jupyter-c-kernel 49 docker run -v $(pwd):/jupyter/jupyter_c_kernel/ -p 8888:8888 brendanrius/jupyter-c-kernel
44 ``` 50 ```
45 51
46 This clones the source, run the kernel, and binds the current folder (the one 52 This clones the source, run the kernel, and binds the current folder (the one
47 you just cloned) to eh corresponding folder in Docker. 53 you just cloned) to the corresponding folder in Docker.
48 Now, if you change the source, it will be reflected in [http://localhost:8888](http://localhost:8888) 54 Now, if you change the source, it will be reflected in [http://localhost:8888](http://localhost:8888)
49 instantly. Do not forget to click "restart" the kernel on the page as it does 55 instantly. Do not forget to click "restart" the kernel on the page as it does
50 not auto-restart. 56 not auto-restart.
51 57
52 ### Version control 58 ### Version control