install: updates to README and install docs for installing to run ensurepath after setup.sh ends
This commit is contained in:
parent
3c64654598
commit
9d32c432db
3 changed files with 11 additions and 1 deletions
|
@ -25,7 +25,10 @@ For more detailed installation see [here](https://coreemu.github.io/core/install
|
||||||
```shell
|
```shell
|
||||||
git clone https://github.com/coreemu/core.git
|
git clone https://github.com/coreemu/core.git
|
||||||
cd core
|
cd core
|
||||||
|
# install dependencies to run installation task
|
||||||
./setup.sh
|
./setup.sh
|
||||||
|
# run the following or add ~/.local/bin to PATH
|
||||||
|
python3 -m pipx ensurepath
|
||||||
# Ubuntu
|
# Ubuntu
|
||||||
inv install
|
inv install
|
||||||
# CentOS
|
# CentOS
|
||||||
|
|
|
@ -120,6 +120,14 @@ First we will need to clone and navigate to the CORE repo.
|
||||||
# clone CORE repo
|
# clone CORE repo
|
||||||
git clone https://github.com/coreemu/core.git
|
git clone https://github.com/coreemu/core.git
|
||||||
cd core
|
cd core
|
||||||
|
# install dependencies to run installation task
|
||||||
|
./setup.sh
|
||||||
|
# run the following or add ~/.local/bin to PATH
|
||||||
|
python3 -m pipx ensurepath
|
||||||
|
# Ubuntu
|
||||||
|
inv install
|
||||||
|
# CentOS
|
||||||
|
./install.sh -p /usr
|
||||||
```
|
```
|
||||||
|
|
||||||
First you can use `setup.sh` as a convenience to install tooling for running invoke tasks:
|
First you can use `setup.sh` as a convenience to install tooling for running invoke tasks:
|
||||||
|
|
1
setup.sh
1
setup.sh
|
@ -17,7 +17,6 @@ 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