From fcc707ab27fa3e0d4a2055912717a86f78c380af Mon Sep 17 00:00:00 2001 From: agu3rra Date: Fri, 16 Feb 2024 17:11:30 -0300 Subject: [PATCH] updates install instructions after naked debian test --- README.md | 11 +++++++++-- setup.sh | 6 ++++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 47c5b16..3ab3acc 100644 --- a/README.md +++ b/README.md @@ -141,8 +141,15 @@ git clone https://github.com/danielmiessler/fabric.git cd fabric ``` -4. Run the `setup.sh`, which will do the following: - - Installs python's poetry dependency manager using their official installer (ref.: https://python-poetry.org/docs/#installing-with-the-official-installer) +4. Install poetry + +ref.: https://python-poetry.org/docs/#installing-with-the-official-installer + +```bash +curl -sSL https://install.python-poetry.org | python3 - +``` + +5. Run the `setup.sh`, which will do the following: - Installs python dependencies. - Creates aliases in your OS. It should update both `~/.bashrc` and `/.zshrc` if they are present in your file system. diff --git a/setup.sh b/setup.sh index dfbfde8..6a3cd7b 100755 --- a/setup.sh +++ b/setup.sh @@ -2,7 +2,7 @@ # Installs poetry on Unix echo "Installing poetry" -curl -sSL https://install.python-poetry.org | python3 - + # Installs poetry-based python dependencies echo "Installing python dependencies" @@ -36,4 +36,6 @@ for config_file in "${config_files[@]}"; do else echo "$config_file does not exist." fi -done \ No newline at end of file +done + +echo "Please close this terminal window to have new alies work." \ No newline at end of file