-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathscript-extend.sh
80 lines (63 loc) · 3.33 KB
/
script-extend.sh
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
73
74
75
76
77
78
79
80
source /opt/utils/script-utils.sh
setup_jupyter_base() {
# TEMP fix: nbconvert requires mistune>=0.8.1,<2 for now
pip install -Uq jupyterhub jupyterlab notebook ipywidgets qpod_hub "mistune>=0.8.1,<2" \
&& jupyter nbextension enable --py widgetsnbextension \
&& jupyter labextension install @jupyter-widgets/jupyterlab-manager \
&& echo "@ Version of Jupyter Notebook/JupyterLab: $(jupyter notebook --version)" \
&& echo "@ Version of Jupyter Notebook/JupyterLab: $(jupyter lab --version)"
}
setup_jupyter_kernels() {
# Install Bash Kernel
pip install -Uq bash_kernel && python -m bash_kernel.install --sys-prefix
which npm \
&& npm install -g --unsafe-perm ijavascript \
&& /opt/node/bin/ijsinstall --install=global --spec-path=full \
&& mv /usr/local/share/jupyter/kernels/javascript /opt/conda/share/jupyter/kernels/
which R \
&& R -e "install.packages('IRkernel')" \
&& R -e "IRkernel::installspec(user=FALSE)" \
&& mv /usr/local/share/jupyter/kernels/ir /opt/conda/share/jupyter/kernels/
which java \
&& pip install -Uq pandas py4j
#&& pip install beakerx && beakerx install \
#&& jupyter labextension install beakerx-jupyterlab
which julia \
&& julia -e "using Pkg; Pkg.add(\"IJulia\"); Pkg.precompile();" \
&& mv ~/.local/share/jupyter/kernels/julia* /opt/conda/share/jupyter/kernels/
which go \
&& export GOPATH=/opt/go/path \
&& go get -u github.com/gopherdata/gophernotes \
&& mkdir -p /opt/conda/share/jupyter/kernels/gophernotes \
&& cp $GOPATH/src/github.com/gopherdata/gophernotes/kernel/* /opt/conda/share/jupyter/kernels/gophernotes \
&& ln -s $GOPATH/bin/gophernotes /usr/bin/
which octave \
&& export PATH=/opt/octave/bin:$PATH \
&& pip install -Uq octave_kernel
echo "@ Installed Jupyter Kernels:" && jupyter kernelspec list
}
setup_jupyter_extensions() {
install_apt /opt/utils/install_list_JPY_extend.apt \
&& install_pip /opt/utils/install_list_JPY_extend.pip
# jupyter nbextensions_configurator enable --sys-prefix
# jupyter contrib nbextension install --sys-prefix
# jupyter serverextension enable --sys-prefix --py jupyterlab_git
jupyter labextension install --no-build \
@jupyterlab/toc @jupyterlab/shortcutui @jupyterlab/git @jupyterlab/latex \
@jupyterlab/mathjax3-extension @jupyterlab/fasta-extension @jupyterlab/geojson-extension \
@jupyterlab/vega3-extension @jupyterlab/commenting-extension
# TEMP fix: (not compatible with JupyterLab 2.0) @jupyterlab/metadata-extension @jupyterlab/dataregistry-extension
jupyter lab build && echo "@ Jupyter Extension list:" \
&& jupyter nbextension list \
&& jupyter serverextension list \
&& jupyter labextension list
}
setup_vscode_base() {
VERSION_CODER=$(curl -sL https://github.com/cdr/code-server/releases.atom | grep "releases/tag" | head -1 | grep -Po '(\d[\d|.]+)') \
&& install_tar_gz "https://github.com/cdr/code-server/releases/download/v${VERSION_CODER}/code-server-${VERSION_CODER}-linux-amd64.tar.gz" \
&& mv /opt/code-server* /opt/code-server \
&& ln -s /opt/code-server/bin/code-server /usr/bin/ \
&& printf "#!/bin/bash\n/opt/code-server/bin/code-server --port=8888 --auth=none --disable-telemetry ${HOME}\n" > /usr/local/bin/start-code-server.sh \
&& chmod u+x /usr/local/bin/start-code-server.sh \
&& echo "@ coder-server Version: $(code-server -v)"
}