Skip to content

Commit 4bcda18

Browse files
authored
Update README.md
1 parent 9e428c5 commit 4bcda18

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![alt tag](https://raw.githubusercontent.com/gophergala2016/gophernotes/master/files/gophernotes2.jpg)
1+
![alt tag](https://raw.githubusercontent.com/gopherds/gophernotes/master/files/gophernotes2.jpg)
22

33
# gophernotes - Go in Notebooks
44

@@ -12,19 +12,19 @@ This project came out of the [Gopher Gala](http://gophergala.com/) 2016. It is
1212

1313
### Simple interactive use:
1414

15-
![alt tag](https://raw.githubusercontent.com/gophergala2016/gophernotes/master/files/screencast.gif)
15+
![alt tag](https://raw.githubusercontent.com/gopherds/gophernotes/master/files/screencast.gif)
1616

1717
### Story telling and pattern recognition with Markdown and Golang:
1818

19-
![alt tag](https://raw.githubusercontent.com/gophergala2016/gophernotes/master/files/pr-screenshot.png)
19+
![alt tag](https://raw.githubusercontent.com/gopherds/gophernotes/master/files/pr-screenshot.png)
2020

2121
### Example Notebooks (dowload and run them locally, follow the links to view in Github, or use the [Jupyter Notebook Viewer](http://nbviewer.jupyter.org/)):
22-
- [Simple Printing and Channels](https://github.com/gophergala2016/gophernotes/blob/master/examples/Simple-Example.ipynb)
23-
- [Pattern Recognition with Golearn](https://github.com/gophergala2016/gophernotes/blob/master/examples/Pattern-Recognition.ipynb)
24-
- [Feed Forward, Recurrent Neural Nets](https://github.com/gophergala2016/gophernotes/blob/master/examples/Feed-Forward-Recurrent-NN.ipynb)
25-
- [Time Parsing, Formatting](https://github.com/gophergala2016/gophernotes/blob/master/examples/Time-Formatting-Parsing.ipynb)
26-
- [Stateful Goroutines](https://github.com/gophergala2016/gophernotes/blob/master/examples/Stateful-Goroutines.ipynb)
27-
- [Worker Pools](https://github.com/gophergala2016/gophernotes/blob/master/examples/Worker-Pools.ipynb)
22+
- [Simple Printing and Channels](https://github.com/gopherds/gophernotes/blob/master/examples/Simple-Example.ipynb)
23+
- [Pattern Recognition with Golearn](https://github.com/gopherds/gophernotes/blob/master/examples/Pattern-Recognition.ipynb)
24+
- [Feed Forward, Recurrent Neural Nets](https://github.com/gopherds/gophernotes/blob/master/examples/Feed-Forward-Recurrent-NN.ipynb)
25+
- [Time Parsing, Formatting](https://github.com/gopherds/gophernotes/blob/master/examples/Time-Formatting-Parsing.ipynb)
26+
- [Stateful Goroutines](https://github.com/gopherds/gophernotes/blob/master/examples/Stateful-Goroutines.ipynb)
27+
- [Worker Pools](https://github.com/gopherds/gophernotes/blob/master/examples/Worker-Pools.ipynb)
2828

2929
## Installation
3030

@@ -65,13 +65,13 @@ This project came out of the [Gopher Gala](http://gophergala.com/) 2016. It is
6565
- with ZeroMQ 2.2.x:
6666

6767
```
68-
go get github.com/gophergala2016/gophernotes
68+
go get github.com/gopherds/gophernotes
6969
```
7070
7171
- with ZeroMQ 4.x:
7272
7373
```
74-
go get -tags zmq_4_x github.com/gophergala2016/gophernotes
74+
go get -tags zmq_4_x github.com/gopherds/gophernotes
7575
```
7676
7777
- Create a directory for the new kernel config:
@@ -83,14 +83,14 @@ This project came out of the [Gopher Gala](http://gophergala.com/) 2016. It is
8383
- Copy the kernel config into the `jupyter` directory:
8484
8585
```
86-
cp -r $GOPATH/src/github.com/gophergala2016/gophernotes/kernel/* ~/.local/share/jupyter/kernels/gophernotes
86+
cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/.local/share/jupyter/kernels/gophernotes
8787
```
8888
8989
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`:
9090
9191
```
9292
mkdir ~/.ipython/kernels/gophernotes
93-
cp -r $GOPATH/src/github.com/gophergala2016/gophernotes/kernel/* ~/.ipython/kernels/gophernotes/
93+
cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/.ipython/kernels/gophernotes/
9494
```
9595
9696
### Local, OSX
@@ -118,7 +118,7 @@ This project came out of the [Gopher Gala](http://gophergala.com/) 2016. It is
118118
119119
```
120120
go get golang.org/x/tools/cmd/goimports
121-
go get github.com/gophergala2016/gophernotes
121+
go get github.com/gopherds/gophernotes
122122
```
123123
124124
if you get this error:
@@ -142,14 +142,14 @@ This project came out of the [Gopher Gala](http://gophergala.com/) 2016. It is
142142
143143
```
144144
mkdir -p ~/.local/share/jupyter/kernels/gophernotes
145-
cp -r $GOPATH/src/github.com/gophergala2016/gophernotes/kernel/* ~/.local/share/jupyter/kernels/gophernotes
145+
cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/.local/share/jupyter/kernels/gophernotes
146146
```
147147
148148
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`:
149149
150150
```
151151
mkdir ~/.ipython/kernels/gophernotes
152-
cp -r $GOPATH/src/github.com/gophergala2016/gophernotes/kernel/* ~/.ipython/kernels/gophernotes/
152+
cp -r $GOPATH/src/github.com/gopherds/gophernotes/kernel/* ~/.ipython/kernels/gophernotes/
153153
```
154154
155155
- Update `~/.local/share/jupyter/kernels/gophernotes/kernel.json` with the path to your $GOPATH installation. If you used the path above, your file will look like:
@@ -225,4 +225,4 @@ Some of the custom commands from the [gore](https://github.com/motemen/gore) REP
225225
226226
`gophernotes` was created by [Daniel Whitenack](http://www.datadan.io/), and is licensed under an [MIT-style License](License.md).
227227
228-
The Golang Gopher image was created by [Takuya Ueda](http://u.hinoichi.net) and is licensed under the Creative Commons 3.0 Attributions license.
228+
The Golang Gopher image adapted for the gophernotes logo was created by [Takuya Ueda](http://u.hinoichi.net) and is licensed under the Creative Commons 3.0 Attributions license.

0 commit comments

Comments
 (0)