From 634c7f7d4b68c5f955988491c995df07a415c4ea Mon Sep 17 00:00:00 2001 From: Zhang Yulong <35552275+ZhangYulongg@users.noreply.github.com> Date: Sun, 25 Apr 2021 10:48:27 +0800 Subject: [PATCH] Update ipipe_py3.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pip21.1版本安装python依赖包会报错,固定升级到稳定的21.0.1版本 --- tools/scripts/ipipe_py3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/ipipe_py3.sh b/tools/scripts/ipipe_py3.sh index d6b3193e..6aac44ee 100644 --- a/tools/scripts/ipipe_py3.sh +++ b/tools/scripts/ipipe_py3.sh @@ -148,7 +148,7 @@ function before_hook() { setproxy unsetproxy cd ${build_path}/python - python3.6 -m pip install --upgrade pip + python3.6 -m pip install --upgrade pip==20.0.1 python3.6 -m pip install requests python3.6 -m pip install -r requirements.txt -i https://mirror.baidu.com/pypi/simple python3.6 -m pip install numpy==1.16.4 -- GitLab