We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe0cdf commit 5271c9eCopy full SHA for 5271c9e
scripts/install.sh
@@ -12,11 +12,14 @@ if [ -z "${EXTENSION}" ]; then
12
jlpm build
13
# install the collaborative chat extension
14
pip install -e python/jupyterlab-collaborative-chat[test]
15
+ jupyter labextension develop --overwrite python/jupyterlab-collaborative-chat
16
17
# install websocket chat extension
18
pip install -e python/jupyterlab-ws-chat[test]
19
+ jupyter labextension develop --overwrite python/jupyterlab-ws-chat
20
else
21
PACKAGE="jupyterlab-${EXTENSION}-chat"
22
jlpm build:${EXTENSION}
23
pip install -e python/${PACKAGE}[test]
24
+ jupyter labextension develop --overwrite python/${PACKAGE}
25
fi
0 commit comments