-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathfix-jupyter.sh
executable file
·62 lines (52 loc) · 1.18 KB
/
fix-jupyter.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
#!/usr/bin/env bash
JUPYTER=
help() {
cat <<EOF
$0: Complete setup of the Jupyter Lab environment.
Usage: $0 [-h|--help] [-j|--jupyter path_to_jupyter]
Where:
-h | --help Print this message and exit
-j | --jupyter path_to_jupyter Specific jupyter instance.
Default: output of "which jupyter"
EOF
}
error() {
echo "ERROR: $@"
echo
echo "Help:"
help
exit 1
}
while [[ $# -gt 0 ]]
do
case $1 in
-h|--h*)
help
exit 0
;;
-j|--j*)
shift
JUPYTER="$1"
;;
*)
echo "ERROR: Unexpected argument $1"
help
exit 1
;;
esac
shift
done
echo "jupyter: $JUPYTER"
[[ -n "$JUPYTER" ]] || JUPYTER=$(which jupyter) || error "command 'which jupyter' failed! Is it installed?"
[[ -x "$JUPYTER" ]] || error "Jupyter not found or not executable: $JUPYTER"
extensions=( @pyviz/jupyterlab_pyviz )
echo "Adding extensions to Jupyter Lab, as needed:"
for ext in "${extensions[@]}"
do
echo "extension: $ext"
$NOOP $JUPYTER labextension check --installed "$ext" || $JUPYTER labextension install "$ext"
done
$NOOP $JUPYTER labextension update --all
$NOOP $JUPYTER lab build
echo "All extensions:"
$NOOP $JUPYTER labextension list