From af5396ca7cba979be7f85aafa1b2ddb9bf169a89 Mon Sep 17 00:00:00 2001 From: Grey Jones Date: Thu, 28 May 2026 12:57:12 +0100 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 28aea27..7589e7c 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,14 @@ You will also need to register an application in the Discord Developer Portal, y python -m venv . ``` 4. Install the required libraries + #### Linux: ``` ./bin/pip install discord dotenv datetime ``` + #### Windows: + ``` + ./Scripts/pip.exe install discord dotenv datetime pip-system-certs + ``` 5. Set your Discord application token ``` echo "TOKEN='my-token-here'" > .env @@ -29,6 +34,11 @@ You will also need to register an application in the Discord Developer Portal, y Or add a line reading `TOKEN='my-token-here'` to a file named ".env" using a text editor of your choosing (must be next to your "main.py" file) 6. Run the script + #### Linux: ``` ./bin/python main.py + ``` + #### Windows: + ``` + ./Scripts/python.exe main.py ``` \ No newline at end of file