"./manage.sh update_packages" updates pip and setuptools

Fix issue #887, #962
This commit is contained in:
Alexandre Flament 2017-07-20 20:51:39 +02:00 committed by Adam Tauber
parent d4aa1dccee
commit 5baad02c06
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@ ACTION=$1
cd "$BASE_DIR"
update_packages() {
pip install --upgrade pip
pip install --upgrade setuptools
pip install -r "$BASE_DIR/requirements.txt"
}