Update README.md

This commit is contained in:
2026-05-28 12:57:12 +01:00
parent 8f7d4bce46
commit af5396ca7c
+10
View File
@@ -19,9 +19,14 @@ You will also need to register an application in the Discord Developer Portal, y
python -m venv . python -m venv .
``` ```
4. Install the required libraries 4. Install the required libraries
#### Linux:
``` ```
./bin/pip install discord dotenv datetime ./bin/pip install discord dotenv datetime
``` ```
#### Windows:
```
./Scripts/pip.exe install discord dotenv datetime pip-system-certs
```
5. Set your Discord application token 5. Set your Discord application token
``` ```
echo "TOKEN='my-token-here'" > .env 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) 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 6. Run the script
#### Linux:
``` ```
./bin/python main.py ./bin/python main.py
```
#### Windows:
```
./Scripts/python.exe main.py
``` ```