From e6158115c60586a41ba7aa0ed8362b0216bd40c1 Mon Sep 17 00:00:00 2001 From: Aritra Ghosh Date: Sat, 7 Dec 2024 22:35:33 +0530 Subject: [PATCH] Making install messages more verbose During installation, we only send error messages to stdout. Specifying this now in the messages that are printed during installation. --- .setup_dev.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.setup_dev.sh b/.setup_dev.sh index d8cd955..7cd300e 100644 --- a/.setup_dev.sh +++ b/.setup_dev.sh @@ -28,9 +28,11 @@ if let "${pipversion[0]}<${MINIMUM_PIP_VERSION}"; then fi echo "Installing package and runtime dependencies in local environment" +echo "This might take a few minutes. Only errors will be printed to stdout" python -m pip install -e . > /dev/null echo "Installing developer dependencies in local environment" +echo "This might take a few minutes. Only errors will be printed to stdout" python -m pip install -e .'[dev]' > /dev/null if [ -f docs/requirements.txt ]; then python -m pip install -r docs/requirements.txt; fi