2020-10-05 17:53:03 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
wget https://cmake.org/files/v3.15/cmake-3.15.4-Linux-x86_64.sh -q && mkdir /tmp/cmake && printf "y\nn\n" | sh cmake-3.15.4-Linux-x86_64.sh --prefix=/tmp/cmake > /dev/null && rm -rf cmake-3.15.4-Linux-x86_64.sh
|
|
|
|
|
export PATH=/tmp/cmake/bin:$PATH
|
|
|
|
|
|
|
|
|
|
python3 -m pip install -U perspective-python
|
|
|
|
|
|
|
|
|
|
export NODE_OPTIONS=--max-old-space-size=32768
|
|
|
|
|
|
2021-03-03 17:53:31 -05:00
|
|
|
EXTENSIONS="@jupyter-widgets/jupyterlab-manager @finos/perspective-jupyterlab"
|
2020-10-05 17:53:03 -04:00
|
|
|
|
|
|
|
|
|
2021-03-03 17:53:31 -05:00
|
|
|
jupyter labextension install $EXTENSIONS --no-build
|
|
|
|
|
jupyter lab build --dev-build=False --minimize=False
|
2020-10-05 17:53:03 -04:00
|
|
|
jupyter serverextension enable --py jupyterlab
|