diff --git a/upgrade-pythonlibs.sh b/upgrade-pythonlibs.sh new file mode 100644 index 0000000..e47c6d4 --- /dev/null +++ b/upgrade-pythonlibs.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +echo "Upgrading pip ..." +venv/bin/pip install pip --upgrade + +echo "Upgrading dependencies ..." +#cat requirements.txt | sed '/^#/d' | xargs -n 1 venv/bin/pip install --upgrade --quiet --no-cache-dir +cat requirements.txt | sed '/^#/d' | xargs -n 1 venv/bin/pip install --upgrade --no-cache-dir