diff options
author | Rex Lee <limingjiang@huawei.com> | 2018-03-21 08:18:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-21 08:18:24 +0000 |
commit | e345f4757abda2e7e734d86d89024d7af6e17de9 (patch) | |
tree | f3e717f7c13d7dfcb5177c54ab80a1c3b6f9f637 /install.sh | |
parent | a854a1dde960b630c0c0d854dee9232e4c4e9ac8 (diff) | |
parent | 348167d3301ade14c12d9b26f138c94afece170a (diff) |
Merge "Enforce pip version during installation"
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh index 5cd83677b..1dbf64ddf 100755 --- a/install.sh +++ b/install.sh @@ -96,7 +96,7 @@ git config --global http.sslVerify false # install yardstick + dependencies -easy_install -U pip +easy_install -U pip==9.0.1 pip install -r requirements.txt pip install -e . |