fix pip not being updated

This commit is contained in:
Damien Elmes 2020-01-02 20:46:15 +10:00
parent 4f881cde83
commit 20a1f8a0a4

View file

@ -14,9 +14,12 @@ fi
# activate venv
if [ ! -d pyenv ]; then
python -m venv pyenv
. pyenv/bin/activate
pip install --upgrade pip setuptools
else
. pyenv/bin/activate
fi
. pyenv/bin/activate
# add qt if missing
python -c 'import PyQt5' 2>/dev/null || pip install -r anki-qt/requirements.qt