Browse Source

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

Fix issue #887, #962
Alexandre Flament 7 years ago
parent
commit
5baad02c06
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      manage.sh

+ 2
- 0
manage.sh View File

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