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
Copy file name to clipboardExpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -41,15 +41,15 @@
41
41
42
42
### Prerequisites
43
43
44
-
-[Go 1.11+](https://golang.org/doc/install) - including GOPATH/bin added to your PATH (i.e., you can run Go binaries that you `go install`).
44
+
-[Go 1.13+](https://golang.org/doc/install) - including GOPATH/bin added to your PATH (i.e., you can run Go binaries that you `go install`).
45
45
-[Jupyter Notebook](http://jupyter.readthedocs.io/en/latest/install.html) or [nteract](https://nteract.io/desktop)
46
46
-[git](https://git-scm.com/download) - usually already present on Linux and Mac OS X. If not present, follow the instructions at [https://git-scm.com/download](https://git-scm.com/download)
47
47
48
48
### Linux or FreeBSD
49
49
50
50
The instructions below should work both on Linux and on FreeBSD.
51
51
52
-
Quick installation as module, requires Go 1.12+
52
+
Method 1: quick installation as module
53
53
```sh
54
54
$ env GO111MODULE=on go get github.com/gopherdata/gophernotes
**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`.
92
92
93
-
Quick installation as module, requires Go 1.12+
93
+
Method 1: quick installation as module
94
94
```sh
95
95
$ env GO111MODULE=on go get github.com/gopherdata/gophernotes
96
96
$ mkdir -p ~/Library/Jupyter/kernels/gophernotes
@@ -100,7 +100,7 @@ $ chmod +w ./kernel.json # in case copied kernel.json has no write permission
100
100
$ sed "s|gophernotes|$(go env GOPATH)/bin/gophernotes|"< kernel.json.in > kernel.json
101
101
```
102
102
103
-
Manual installation from GOPATH, also works with Go 1.11
103
+
Method 2: manual installation from GOPATH
104
104
```sh
105
105
$ env GO111MODULE=off go get -d -u github.com/gopherdata/gophernotes
0 commit comments