-
Notifications
You must be signed in to change notification settings - Fork 1
/
postBuild
executable file
·72 lines (59 loc) · 1.73 KB
/
postBuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/bash
set -e
GOVERS=1.11.4
mkdir -p \
$HOME/.local/go/$GOVERS \
$HOME/go
echo "::: download data"
mkdir -p $HOME/examples/testdata
curl -L http://data.astropy.org/tutorials/FITS-images/HorseHead.fits > $HOME/examples/testdata/HorseHead.fits
echo "::: install Go ${GOVERS}..."
curl -O -L https://golang.org/dl/go${GOVERS}.linux-amd64.tar.gz
tar -C $HOME/.local/go/$GOVERS -zxf go${GOVERS}.linux-amd64.tar.gz
/bin/rm go${GOVERS}.linux-amd64.tar.gz
export GOROOT=$HOME/.local/go/$GOVERS/go
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
## install interesting packages
echo "::: installing gophernotes, go-hep and gonum..."
go get golang.org/x/tools/cmd/goimports
#git clone -b jupyter-display-data https://github.com/sbinet-gonum/ng $GOPATH/src/neugram.io/ng
go get github.com/gopherdata/gophernotes
go get golang.org/x/exp/rand
go get go-hep.org/x/hep/...
go get gonum.org/v1/gonum/...
go get gonum.org/v1/plot/...
go get github.com/astrogo/fitsio
echo "::: installing gophernotes, go-hep and gonum... [done]"
## setup environment for Go
cat >> $HOME/.setup-go << EOF
## setup Go
export GOROOT=$GOROOT
export GOPATH=$GOPATH
export PATH=\$GOPATH/bin:\$GOROOT/bin:\$PATH
EOF
cat >> $HOME/.bashrc << EOF
. ~/.setup-go
EOF
## install the Go kernel
mkdir -p ./binder/gophernotes
cat >| ./binder/gophernotes/kernel.json << EOF
{
"argv": [
"$GOPATH/bin/gophernotes",
"{connection_file}"
],
"display_name": "Go",
"language": "go",
"name": "go",
"env": {
"GOPATH": "$GOPATH",
"GOROOT": "$GOROOT",
"PATH": "$GOPATH/bin:$GOROOT/bin:$PATH"
}
}
EOF
jupyter kernelspec install ./binder/gophernotes --user
/bin/rm -rf binder
echo "::: kernel list"
jupyter kernelspec list