diff --git a/checks/pip_check.sh b/checks/pip_check.sh index d97c33d..8be8aac 100644 --- a/checks/pip_check.sh +++ b/checks/pip_check.sh @@ -41,11 +41,11 @@ for r in ${REQUIRED[@]}; do fi done if (( ${#missing[@]} )); then - sentence='Try to `pip install ' + sentence='❌ Some packages are missing: ' sentence+=$missing - sentence+='` again.' - echo '❌ Some packages are missing:' echo $sentence + echo '👉 Ask a TA for help to check your python setup.' + echo ' Note to TAs: First thing to do: redo the Python packages step of the instructions.' exit 1 else echo '✅ Everything is fine, continue the setup instructions.'