diff options
Diffstat (limited to 'systems/centos')
-rwxr-xr-x | systems/centos/build_base_machine.sh | 4 | ||||
-rwxr-xr-x | systems/centos/prepare_python_env.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/systems/centos/build_base_machine.sh b/systems/centos/build_base_machine.sh index 95f9e211..0e1ed830 100755 --- a/systems/centos/build_base_machine.sh +++ b/systems/centos/build_base_machine.sh @@ -76,8 +76,8 @@ sudo yum -y install centos-release-scl-rh # install python34 packages and git-review tool yum -y install $(echo " -rh-python34 -rh-python34-python-tkinter +rh-python36 +rh-python36-python-tkinter git-review " | grep -v ^#) # prevent ovs vanilla from building from source due to kernel incompatibilities diff --git a/systems/centos/prepare_python_env.sh b/systems/centos/prepare_python_env.sh index 108ba1f6..4f5c0065 100755 --- a/systems/centos/prepare_python_env.sh +++ b/systems/centos/prepare_python_env.sh @@ -21,8 +21,8 @@ if [ -d "$VSPERFENV_DIR" ] ; then exit fi -scl enable rh-python34 " -virtualenv "$VSPERFENV_DIR" --python /opt/rh/rh-python34/root/usr/bin/python3 +scl enable rh-python36 " +virtualenv "$VSPERFENV_DIR" --python /opt/rh/rh-python36/root/usr/bin/python3 source "$VSPERFENV_DIR"/bin/activate pip install -r ../requirements.txt " |