Skip to content

Commit

Permalink
docs: Add commands for adding Poetry to PATH in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixpereira committed Jul 10, 2024
1 parent 76afbfe commit a5d1007
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ DuckBot is a Discord bot written in Python using the discord.py library for the

To get started, please follow these steps:

1. Install Poetry if not already installed:
1. Install Poetry and add it to your PATH if not already installed:

Linux, macOS, Windows (WSL)
```bash
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"
```
Windows (Powershell)
```bash
```powershell
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -
setx PATH "%APPDATA%\Python\Scripts;%PATH%"
```

2. Install the dependencies.
Expand Down

0 comments on commit a5d1007

Please sign in to comment.