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