From 1e68a0e0657373493b039e6b539e35ea1c5c0d94 Mon Sep 17 00:00:00 2001 From: lmccay Date: Sun, 11 Feb 2024 23:24:49 -0500 Subject: [PATCH] Update README.md #86 Clarify the Instructions in the README --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f69c2ac..e7b7160 100644 --- a/README.md +++ b/README.md @@ -148,18 +148,21 @@ poetry install ```bash # Tell your shell how to find the `fabric` client -echo 'alias fabric="/the/path/to/fabric/client/fabric"' >> ~/.bashrc +echo 'alias fabric="python3 /the/path/to/fabric/client/fabric/fabric.py"' >> ~/.bashrc # Example of ~/.zshrc or ~/.bashrc -alias fabric="~/Development/fabric/client/fabric" +alias fabric="python3 ~/Development/fabric/client/fabric/fabric.py" ``` 6. Restart your shell +Restart your shell via 'bash'. +Enter the poetry shell for access to the installed dependencies. + ```bash -# Make sure you can -echo 'alias fabric="/the/path/to/fabric/client/fabric"' >> ~/.bashrc +# Make sure you can access the help description via the shell +poetry shell # Example -echo 'alias fabric="~/Development/fabric/client/fabric"' >> ~/.zshrc +fabric -h ``` ### Using the `fabric` client