diff options
Diffstat (limited to 'systems')
-rwxr-xr-x | systems/rhel/7.2/prepare_python_env.sh | 2 | ||||
-rwxr-xr-x | systems/rhel/7.3/prepare_python_env.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/systems/rhel/7.2/prepare_python_env.sh b/systems/rhel/7.2/prepare_python_env.sh index 0178954e..fb5882f1 100755 --- a/systems/rhel/7.2/prepare_python_env.sh +++ b/systems/rhel/7.2/prepare_python_env.sh @@ -22,7 +22,7 @@ if [ -d "$VSPERFENV_DIR" ] ; then fi scl enable python33 " -virtualenv "$VSPERFENV_DIR" --python /usr/bin/python3 +virtualenv "$VSPERFENV_DIR" --python /opt/rh/python33/root/usr/bin/python3 source "$VSPERFENV_DIR"/bin/activate pip install -r ../requirements.txt pip install pylint diff --git a/systems/rhel/7.3/prepare_python_env.sh b/systems/rhel/7.3/prepare_python_env.sh index a9021451..b573bb9f 100755 --- a/systems/rhel/7.3/prepare_python_env.sh +++ b/systems/rhel/7.3/prepare_python_env.sh @@ -22,7 +22,7 @@ if [ -d "$VSPERFENV_DIR" ] ; then fi scl enable python33 " -virtualenv "$VSPERFENV_DIR" --python /usr/bin/python3 +virtualenv "$VSPERFENV_DIR" --python /opt/rh/python33/root/usr/bin/python3 source "$VSPERFENV_DIR"/bin/activate pip install -r ../requirements.txt pip install pylint |