Ver código fonte

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

Fix issue #887, #962
Alexandre Flament 7 anos atrás
pai
commit
5baad02c06
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2
    0
      manage.sh

+ 2
- 0
manage.sh Ver arquivo

@@ -8,6 +8,8 @@ ACTION=$1
8 8
 cd "$BASE_DIR"
9 9
 
10 10
 update_packages() {
11
+    pip install --upgrade pip
12
+    pip install --upgrade setuptools
11 13
     pip install -r "$BASE_DIR/requirements.txt"
12 14
 }
13 15