Update install2.sh
update to account for missing python3-venv package and updating PATH in script to run newly installed commands
This commit is contained in:
parent
a236ea2455
commit
139323146e
1 changed files with 3 additions and 3 deletions
|
@ -13,8 +13,7 @@ fi
|
||||||
echo "installing CORE for ${os}"
|
echo "installing CORE for ${os}"
|
||||||
case ${os} in
|
case ${os} in
|
||||||
"ubuntu")
|
"ubuntu")
|
||||||
sudo apt install -y python3-pip
|
sudo apt install -y python3-pip python3-venv
|
||||||
|
|
||||||
;;
|
;;
|
||||||
"centos")
|
"centos")
|
||||||
sudo yum install -y python3-pip
|
sudo yum install -y python3-pip
|
||||||
|
@ -26,5 +25,6 @@ esac
|
||||||
|
|
||||||
python3 -m pip install --user pipx
|
python3 -m pip install --user pipx
|
||||||
python3 -m pipx ensurepath
|
python3 -m pipx ensurepath
|
||||||
python3 -m pipx install invoke
|
export PATH=$PATH:~/.local/bin
|
||||||
|
pipx install invoke
|
||||||
inv install
|
inv install
|
||||||
|
|
Loading…
Reference in a new issue