浏览代码

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

Fix issue #887, #962
Alexandre Flament 8 年前
父节点
当前提交
5baad02c06
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      manage.sh

+ 2
- 0
manage.sh 查看文件

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