File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,18 @@ From: tensorflow/tensorflow:1.13.1-gpu-py3-jupyter
10
10
# reset sources to https://us.archive.ubuntu.com
11
11
sed -i 's/http:\/\/archive.ubuntu.com/http:\/\/us.archive.ubuntu.com/' /etc/apt/sources.list
12
12
13
+ # install node
14
+ curl -sL https://deb.nodesource.com/setup_11.x | bash -
15
+ apt-get -y install nodejs
16
+
17
+ # install yarn
18
+ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
19
+ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
20
+ apt update && apt install -y yarn
21
+ yarn --version
22
+ node --version
23
+ npm --version
24
+
13
25
# sessions and windows in shell
14
26
apt update && apt install -y tmux
15
27
@@ -27,6 +39,12 @@ From: tensorflow/tensorflow:1.13.1-gpu-py3-jupyter
27
39
pip install jupyter_contrib_nbextensions
28
40
pip install jupyterlab
29
41
42
+ # jupyterlab extensions
43
+ jupyter labextension install @jupyterlab/toc
44
+ jupyter labextension install @krassowski/jupyterlab_go_to_definition
45
+ jupyter labextension install jupyterlab-drawio
46
+ jupyter labextension install @ryantam626/jupyterlab_sublime
47
+
30
48
# keras and visualization tools
31
49
pip install keras
32
50
apt update && apt install -y graphviz
You can’t perform that action at this time.
0 commit comments