diff --git a/cloneall.bash b/cloneall.bash index 2f382ddacb463515af7455fee05b0f9f6b527310..d5e795ced4d1d39472f73d7f0f871a984fb9385e 100755 --- a/cloneall.bash +++ b/cloneall.bash @@ -31,6 +31,7 @@ if [ ! -z "$clona" ]; then . .env [[ ! -d "venv" ]] && python3 -mvenv venv . venv/bin/activate + pip install --upgrade pip pip install autopep8 pip install matplotlib for REPO in "${REPOS[@]}"; do @@ -39,7 +40,7 @@ if [ ! -z "$clona" ]; then pushd $REPO git switch dev || echo no dev branch if [[ "$REPO" != "gitlab-profile" ]]; then - [ ! -z "$pyinsta" ] && python -mpip install -e . && python -m hotwheels.checkup hotwheels/ + [ ! -z "$pyinsta" ] && python -mpip install -e .[edit] && python -m hotwheels.checkup hotwheels/ fi popd done