Skip to content

Commit a07913a

Browse files
authored
Update README.md
1 parent dbcf49f commit a07913a

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

README.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,21 @@ This project came out of the [Gopher Gala](http://gophergala.com/) 2016. It is
4747

4848
### Local, Linux
4949

50-
- Dependencies:
50+
Dependencies:
5151

5252
- [Go](https://golang.org/) (Tested with Go 1.5 and 1.6)
5353
- Jupyter (see [here](http://jupyter.readthedocs.org/en/latest/install.html) for more details on installing jupyter)
5454
- [ZeroMQ](http://zeromq.org/) (2.2.X or 4.x)
5555

56-
- Create a workspace and setup your `GOPATH`, see https://golang.org/doc/code.html#GOPATH
56+
1. Create a workspace and setup your `GOPATH`, see https://golang.org/doc/code.html#GOPATH
5757

58-
- Install `goimports` if you haven't already:
58+
2. Install `goimports` if you haven't already:
5959

6060
```
6161
go get golang.org/x/tools/cmd/goimports
6262
```
6363

64-
- Get the kernel:
64+
3. Get the kernel:
6565
- with ZeroMQ 2.2.x:
6666

6767
```
@@ -74,22 +74,27 @@ This project came out of the [Gopher Gala](http://gophergala.com/) 2016. It is
7474
go get -tags zmq_4_x github.com/gopherds/gophernotes
7575
```
7676
77-
- Create a directory for the new kernel config:
77+
4. Create a directory for the new kernel config:
7878
7979
```
8080
mkdir -p ~/.local/share/jupyter/kernels/gophernotes
8181
```
82-
83-
- Copy the kernel config into the `jupyter` directory:
82+
83+
Note, depending on which version of jupyter you are using and if you are using Anaconda, you may need to copy to `~/.ipython` rather than `~/.local/share`:
84+
85+
```
86+
mkdir ~/.ipython/kernels/gophernotes
87+
cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/.ipython/kernels/gophernotes/
88+
```
89+
5. Copy the kernel config into the `jupyter` directory:
8490
8591
```
8692
cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/.local/share/jupyter/kernels/gophernotes
8793
```
8894
89-
Note, depending on which version of jupyter you are using and if you are using Anaconda, you may need to copy to `~/.ipython` rather than `~/.local/share`:
95+
OR depending on your version of jupyter:
9096
9197
```
92-
mkdir ~/.ipython/kernels/gophernotes
9398
cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/.ipython/kernels/gophernotes/
9499
```
95100

0 commit comments

Comments
 (0)