From 113be650784da572e65c6f41bb2a169c055ce824 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Thu, 17 Feb 2022 15:17:07 -0800 Subject: [PATCH] install: adjustments to have a better workflow for installation --- README.md | 4 ++-- docs/install.md | 4 ++-- setup.sh | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 314d231e..3cd4ae9e 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ git clone https://github.com/coreemu/core.git cd core # install dependencies to run installation task ./setup.sh -# run the following or add ~/.local/bin to PATH -python3 -m pipx ensurepath +# run the following or open a new terminal +source ~/.bashrc # Ubuntu inv install # CentOS diff --git a/docs/install.md b/docs/install.md index dc9903a5..2ba72fc5 100644 --- a/docs/install.md +++ b/docs/install.md @@ -122,8 +122,8 @@ git clone https://github.com/coreemu/core.git cd core # install dependencies to run installation task ./setup.sh -# run the following or add ~/.local/bin to PATH -python3 -m pipx ensurepath +# run the following or open a new terminal +source ~/.bashrc # Ubuntu inv install # CentOS diff --git a/setup.sh b/setup.sh index 13c25de9..eb81a451 100755 --- a/setup.sh +++ b/setup.sh @@ -17,6 +17,7 @@ fi # install tooling for invoke based installation python3 -m pip install --user pipx==0.16.4 +python3 -m pipx ensurepath export PATH=$PATH:~/.local/bin pipx install invoke==1.4.1 pipx install poetry==1.1.12