forked from jupyter-widgets/ipywidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-install.sh
executable file
·83 lines (67 loc) · 2.32 KB
/
dev-install.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
81
82
83
#!/usr/bin/env bash
# For a clean conda environment, do:
# conda create -c conda-forge -n ipywidgets notebook=4.4.1
# source activate ipywidgets
# pip install jupyterlab==0.16.2
# ipython kernel install --name ipywidgets --display-name "ipywidgets" --sys-prefix
# git clone https://github.com/jupyter-widgets/ipywidgets.git
# cd ipywidgets
# ./dev-install.sh
echo -n "Checking npm... "
npm -v
if [ $? -ne 0 ]; then
echo "'npm -v' failed, therefore npm is not installed. In order to perform a
developer install of ipywidgets you must have both npm and pip installed on your
machine! See http://blog.npmjs.org/post/85484771375/how-to-install-npm for
installation instructions."
exit 1
fi
echo -n "Checking pip... "
pip --version
if [ $? -ne 0 ]; then
echo "'pip --version' failed, therefore pip is not installed. In order to perform
a developer install of ipywidgets you must have both pip and npm installed on
your machine! See https://packaging.python.org/installing/ for installation instructions."
exit 1
fi
echo -n "Checking jupyter lab... "
jupyter lab --version 2>/dev/null
if [ $? -ne 0 ]; then
echo "no, skipping installation of jupyterlab_widgets"
skip_jupyter_lab=yes
fi
# All following commands must run successfully
set -e
nbExtFlags="--sys-prefix $1"
cd jupyter-js-widgets
npm install
cd ..
cd widgetsnbextension
# Needed since jupyter-js-widgets 3 hasn't been published yet
npm install ../jupyter-js-widgets
npm install
npm run update
pip install -v -e .
if [[ "$OSTYPE" == "msys" ]]; then
jupyter nbextension install --overwrite --py $nbExtFlags widgetsnbextension
else
jupyter nbextension install --overwrite --py --symlink $nbExtFlags widgetsnbextension
fi
jupyter nbextension enable --py $nbExtFlags widgetsnbextension
cd ..
if test "$skip_jupyter_lab" != yes; then
cd jupyterlab_widgets
# needed since jupyter-js-widgets 3 hasn't been published yet
npm install ../jupyter-js-widgets
npm install
npm run update
pip install -v -e .
if [[ "$OSTYPE" == "msys" ]]; then
jupyter labextension install --overwrite --py $nbExtFlags jupyterlab_widgets
else
jupyter labextension install --overwrite --py --symlink $nbExtFlags jupyterlab_widgets
fi
jupyter labextension enable --py $nbExtFlags jupyterlab_widgets
cd ..
fi
pip install -v -e .