bug fix: specify venv version

This commit is contained in:
Usman Nasir 2020-02-11 10:09:30 +05:00
parent 89c1f89c61
commit 01bf9fabfb
1 changed files with 5 additions and 1 deletions

View File

@ -517,7 +517,11 @@ if [[ $DEV == "ON" ]] ; then
dnf install python3 -y
check_return
fi
pip3.6 install virtualenv
if [[ $SERVER_OS == "CentOS" ]] ; then
pip3.6 install virtualenv==16.7.9
else
pip3.6 install virtualenv
fi
check_return
fi
fi