Skip to content

Commit

Permalink
Making install messages more verbose
Browse files Browse the repository at this point in the history
During installation, we only send error messages to stdout. Specifying this now in the messages that are printed during installation.
  • Loading branch information
aritraghsh09 authored Dec 7, 2024
1 parent 0467d4a commit e615811
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .setup_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit e615811

Please sign in to comment.