diff options
author | Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com> | 2018-03-20 14:26:09 +0000 |
---|---|---|
committer | Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com> | 2018-03-20 14:42:31 +0000 |
commit | 348167d3301ade14c12d9b26f138c94afece170a (patch) | |
tree | a7dba5fc570b1dda9e796f3e708c74a2b4e4586b /install.sh | |
parent | 5f61719a12ff20df3679d01578de84110f68302f (diff) |
Enforce pip version during installation
Currently there is a reported problem in pip library [1]. To avoid this
problem, the pip version should be enforced during the installation.
[1]https://github.com/pypa/pip/issues/5079
JIRA: YARDSTICK-1087
Change-Id: I2ee28749f146cd3b0e1bf4ed92b51cbe6db8b2f3
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
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 . |