@@ -19,12 +19,12 @@ def __init__(self, nop=False):
1919 def common_first (self ):
2020 self .install_downloaders ()
2121 self .setup_pip ()
22- self .pip3_install ("wheel virtualenv" )
23- self .pip3_install ("setuptools --upgrade" )
22+ self .pip_install ("wheel virtualenv" )
23+ self .pip_install ("setuptools --upgrade" )
2424
2525 if self .os == 'linux' :
2626 self .install ("ca-certificates" )
27- self .install ("git cmake unzip wget patchelf awscli " )
27+ self .install ("git cmake unzip wget patchelf" )
2828 self .install ("coreutils" ) # for realpath
2929
3030 def debian_compat (self ):
@@ -43,7 +43,7 @@ def redhat_compat(self):
4343 else :
4444 self .run ("amazon-linux-extras install epel" , output_on_error = True )
4545 self .install ("python3 python3-devel" )
46- self .pip3_install ("psutil" )
46+ self .pip_install ("psutil" )
4747
4848 self .install_git_lfs_on_linux ()
4949
@@ -64,15 +64,16 @@ def macosx(self):
6464
6565 def common_last (self ):
6666 # redis-py-cluster should be installed from git due to redis-py dependency
67- self .pip3_install ("--no-cache-dir git+https://github.com/Grokzen/redis-py-cluster.git@master" )
67+ self .pip_install ("--no-cache-dir git+https://github.com/Grokzen/redis-py-cluster.git@master" )
6868 # the following can be probably installed from pypi
69- self .pip3_install ("--no-cache-dir git+https://github.com/RedisLabsModules/RLTest.git@master" )
70- self .pip3_install ("--no-cache-dir git+https://github.com/RedisLabs/RAMP@master" )
69+ self .pip_install ("--no-cache-dir git+https://github.com/RedisLabsModules/RLTest.git@master" )
70+ self .pip_install ("--no-cache-dir git+https://github.com/RedisLabs/RAMP@master" )
7171
7272 root = os .path .join (os .path .dirname (__file__ ), ".." )
73- # self.pip3_install ("-r {}/test/test_requirements.txt".format(root))
73+ # self.pip_install ("-r {}/test/test_requirements.txt".format(root))
7474
75- self .pip3_install ("mkdocs mkdocs-material mkdocs-extensions" )
75+ self .pip_install ("awscli" )
76+ self .pip_install ("mkdocs mkdocs-material mkdocs-extensions" )
7677
7778#----------------------------------------------------------------------------------------------
7879
0 commit comments