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 342bb7b commit 2c196d9Copy full SHA for 2c196d9
scripts/install.sh
@@ -1,7 +1,15 @@
1
#!/bin/bash
2
set -eux
3
-# install core packages
4
-pip install jupyterlab~=4.0
+
+# Install JupyterLab
5
+#
6
+# Excludes v4.3.2 as it pins `httpx` to a very narrow range, causing `pip
7
+# install` to stall on package resolution.
8
9
+# See: https://github.com/jupyterlab/jupyter-ai/issues/1138
10
+pip install jupyterlab~=4.0,!=4.3.2
11
12
+# Install core packages
13
cp playground/config.example.py playground/config.py
14
jlpm install
15
jlpm dev-install
0 commit comments