Merge pull request #1 from lmccay/lmccay-patch-1

#86 Update README.md
This commit is contained in:
lmccay 2024-02-11 23:25:49 -05:00 committed by GitHub
commit 3313543437
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,18 +148,21 @@ poetry install
```bash ```bash
# Tell your shell how to find the `fabric` client # 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 # Example of ~/.zshrc or ~/.bashrc
alias fabric="~/Development/fabric/client/fabric" alias fabric="python3 ~/Development/fabric/client/fabric/fabric.py"
``` ```
6. Restart your shell 6. Restart your shell
Restart your shell via 'bash'.
Enter the poetry shell for access to the installed dependencies.
```bash ```bash
# Make sure you can # Make sure you can access the help description via the shell
echo 'alias fabric="/the/path/to/fabric/client/fabric"' >> ~/.bashrc poetry shell
# Example # Example
echo 'alias fabric="~/Development/fabric/client/fabric"' >> ~/.zshrc fabric -h
``` ```
### Using the `fabric` client ### Using the `fabric` client