update install.sh to only use pipenv sync to avoid package changes, added user/root installations of pipenv for centos dev environment

This commit is contained in:
Blake Harnden 2020-03-05 12:58:42 -08:00
parent e5a446d70f
commit 5c52fbbdec

View file

@ -81,7 +81,7 @@ case ${os} in
python3 -m pip install pipenv
build_core
install_dev_core
python3 -m pipenv install --dev
python3 -m pipenv sync --dev
fi
;;
"centos")
@ -103,7 +103,8 @@ case ${os} in
sudo python3 -m pip install pipenv
build_core --prefix=/usr
install_dev_core
sudo python3 -m pipenv install --dev
sudo python3 -m pipenv sync --dev
python3 -m pipenv sync --dev
fi
;;
*)