Create a virtual environment by running:
python -m venv venvActivate the virtual environment:
On Windows:
venv\Scripts\activateOn macOS and Linux:
source venv/bin/activateAfter creating and activating your virtual environment, you can install the requirements from the requirements.txt file by running:
pip install -r requirements.txtCopy the env.sample file to .env and add your Discord bot token.
To run the bot,
python bot.pyYou will notice on the sample Technova server, the bot will show as online. Feel free to test commands now (e.g. !hello)
If the bot seems to hang or doesn't start correctly, ensure that the bot isn't already running or online from a previous session.