You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ sed "s,gophernotes,$(go env GOPATH)/bin/gophernotes,"< kernel.json.in > kernel.json
68
+
```
57
69
70
+
To confirm that the `gophernotes` binary is installed in GOPATH, execute it directly:
71
+
```sh
72
+
$ "$(go env GOPATH)"/bin/gophernotes
73
+
```
74
+
and you shoud see the following:
58
75
```sh
59
-
$ gophernotes
60
76
2017/09/20 10:33:12 Need a command line argument specifying the connection file.
61
77
```
62
78
@@ -68,19 +84,34 @@ $ jupyter --data-dir
68
84
69
85
### Mac
70
86
71
-
**Important Note** - gomacro relies on the `plugin` package when importing third party libraries. This package works reliably on Mac OS X only with Go 1.10.2+ as long as you **never** execute the command `strip gophernotes`.
72
-
If you can only compile gophernotes with Go <= 1.10.1 on Mac, consider using the [Docker](#docker) install and run gophernotes/Jupyter in Docker.
87
+
**Important Note** - gomacro relies on the `plugin` package when importing third party libraries. This package works reliably on Mac OS X with Go 1.10.2+ as long as you **never** execute the command `strip gophernotes`.
73
88
89
+
Quick installation as module, requires Go 1.12+
74
90
```sh
75
-
$ go get -u github.com/gopherdata/gophernotes
91
+
$ env GO111MODULE=on go get github.com/gopherdata/gophernotes
0 commit comments