forked from jupyter-widgets/ipywidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev-install.sh
executable file
·56 lines (45 loc) · 1.59 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
#!/usr/bin/env bash
# For a clean conda environment please read docs/source/dev_install.md
echo -n "Checking yarn... "
yarn -v
if [ $? -ne 0 ]; then
echo "'yarn -v' failed, therefore yarn is not installed. In order to perform a
developer install of ipywidgets you must have both yarn and pip installed on your
machine! See https://yarnpkg.com/lang/en/docs/install/ 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 yarn 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 widgets for jupyterlab"
skip_jupyter_lab=yes
fi
# All following commands must run successfully
set -e
nbExtFlags="--sys-prefix $1"
echo -n "Installing and building all yarn packages"
yarn install
yarn run build
echo -n "widgetsnbextension"
cd widgetsnbextension
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 ..
echo -n "ipywidgets"
pip install -v -e .
if test "$skip_jupyter_lab" != yes; then
jupyter labextension install @jupyter-widgets/jupyterlab-manager
fi