From b243fd37681945f81458c52ea3a44f4e647890dd Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Tue, 10 Oct 2023 12:17:31 -0500 Subject: [PATCH] add -x to dev-install for debugging --- dev-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-install.sh b/dev-install.sh index 24cdb3ad63..c79fb448a1 100755 --- a/dev-install.sh +++ b/dev-install.sh @@ -1,7 +1,8 @@ #!/usr/bin/env bash - # For a clean conda environment please read docs/source/dev_install.md +set -x + echo -n "Checking pip... " pip --version if [ $? -ne 0 ]; then @@ -38,7 +39,7 @@ else jupyter nbclassic-extension install --overwrite --py --symlink $nbExtFlags widgetsnbextension || true fi jupyter nbextension enable --py $nbExtFlags widgetsnbextension || true -jupyter nbclassic-nbextension enable --py $nbExtFlags widgetsnbextension || true +jupyter nbclassic-extension enable --py $nbExtFlags widgetsnbextension || true echo -n "ipywidgets" pip install -v -e "./python/ipywidgets[test]"