forked from jpmorganchase/python-training
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpostBuild
More file actions
52 lines (43 loc) · 1.27 KB
/
Copy pathpostBuild
File metadata and controls
52 lines (43 loc) · 1.27 KB
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
#!/bin/bash
export NODE_OPTIONS=--max-old-space-size=32768
EXTENSIONS="
@jupyter-widgets/[email protected]
@jupyter-widgets/[email protected]
@finos/[email protected]
@jupyterlab/[email protected]
"
until jupyter labextension install $EXTENSIONS --no-build
do
echo "Extension failed to install"
done
until jupyter lab build
do
echo "Extension failed to install"
done
jupyter serverextension enable --py nbdime
jupyter serverextension enable --py jupyterlab_iframe
jupyter serverextension enable --py jupyterlab_autoversion
jupyter serverextension enable --py jupyterlab_celltests
jupyter serverextension enable --py jupyterlab_commands
jupyter serverextension enable --py jupyterlab_email
jupyter serverextension enable --py jupyterlab_templates
jupyter serverextension enable --py nbresuse
python3 -m spacy download en_core_web_sm
# wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
# tar xfzv ta-lib-0.4.0-src.tar.gz
# cd ta-lib
# ./configure --prefix=/usr
# make
# make install
# pip3 install TA-lib
# sudo make install