install: adjustments to have a better workflow for installation
This commit is contained in:
parent
9d32c432db
commit
113be65078
3 changed files with 5 additions and 4 deletions
|
@ -27,8 +27,8 @@ git clone https://github.com/coreemu/core.git
|
||||||
cd core
|
cd core
|
||||||
# install dependencies to run installation task
|
# install dependencies to run installation task
|
||||||
./setup.sh
|
./setup.sh
|
||||||
# run the following or add ~/.local/bin to PATH
|
# run the following or open a new terminal
|
||||||
python3 -m pipx ensurepath
|
source ~/.bashrc
|
||||||
# Ubuntu
|
# Ubuntu
|
||||||
inv install
|
inv install
|
||||||
# CentOS
|
# CentOS
|
||||||
|
|
|
@ -122,8 +122,8 @@ git clone https://github.com/coreemu/core.git
|
||||||
cd core
|
cd core
|
||||||
# install dependencies to run installation task
|
# install dependencies to run installation task
|
||||||
./setup.sh
|
./setup.sh
|
||||||
# run the following or add ~/.local/bin to PATH
|
# run the following or open a new terminal
|
||||||
python3 -m pipx ensurepath
|
source ~/.bashrc
|
||||||
# Ubuntu
|
# Ubuntu
|
||||||
inv install
|
inv install
|
||||||
# CentOS
|
# CentOS
|
||||||
|
|
1
setup.sh
1
setup.sh
|
@ -17,6 +17,7 @@ fi
|
||||||
|
|
||||||
# install tooling for invoke based installation
|
# install tooling for invoke based installation
|
||||||
python3 -m pip install --user pipx==0.16.4
|
python3 -m pip install --user pipx==0.16.4
|
||||||
|
python3 -m pipx ensurepath
|
||||||
export PATH=$PATH:~/.local/bin
|
export PATH=$PATH:~/.local/bin
|
||||||
pipx install invoke==1.4.1
|
pipx install invoke==1.4.1
|
||||||
pipx install poetry==1.1.12
|
pipx install poetry==1.1.12
|
||||||
|
|
Loading…
Reference in a new issue