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