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:
parent
e5a446d70f
commit
5c52fbbdec
1 changed files with 3 additions and 2 deletions
|
@ -81,7 +81,7 @@ case ${os} in
|
||||||
python3 -m pip install pipenv
|
python3 -m pip install pipenv
|
||||||
build_core
|
build_core
|
||||||
install_dev_core
|
install_dev_core
|
||||||
python3 -m pipenv install --dev
|
python3 -m pipenv sync --dev
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
"centos")
|
"centos")
|
||||||
|
@ -103,7 +103,8 @@ case ${os} in
|
||||||
sudo python3 -m pip install pipenv
|
sudo python3 -m pip install pipenv
|
||||||
build_core --prefix=/usr
|
build_core --prefix=/usr
|
||||||
install_dev_core
|
install_dev_core
|
||||||
sudo python3 -m pipenv install --dev
|
sudo python3 -m pipenv sync --dev
|
||||||
|
python3 -m pipenv sync --dev
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Add table
Reference in a new issue