π Installation Guide (Python Source)
πͺ Windows Setup
1. Install Python (version 3.10+)
Download the official installer from
During installation, make sure to check:
β
"Add Python to PATH"
2. Clone the Repository
Open Command Prompt (cmd) or PowerShell and run:
git clone https://github.com/Jaammerr/DeSpeed-Bot.git
cd DeSpeed-Bot
3. Create and Activate a Virtual Environment
python -m venv venv
venv\Scripts\activate
4. Install Dependencies
pip install --upgrade pip
pip install -r requirements.txt
Make sure your config
folder is inside the main project directory.
6. Run the Bot
Youβre done! π
π§ Ubuntu/Linux Setup
1. Install Python & Git
Open terminal and run:
sudo apt update
sudo apt install python3 python3-venv python3-pip git -y
2. Clone the Repository
git clone https://github.com/Jaammerr/DeSpeed-Bot.git
cd DeSpeed-Bot
3. Create and Activate a Virtual Environment
python3 -m venv venv
source venv/bin/activate
4. Install Dependencies
pip install --upgrade pip
pip install -r requirements.txt
Make sure your config
folder is inside the project directory.
6. Run with Screen (Recommended)
Install screen
if you donβt have it:
sudo apt install screen -y
Create and enter a screen session:
screen -S despeed-bot-session
Run the bot:
To detach (keep it running):
Ctrl+A
, then press D
π Screen Commands Reference
# List all screen sessions
screen -ls
# Reattach to a session
screen -r despeed-bot-session
# Delete a session
screen -X -S despeed-bot-session quit
π οΈ Troubleshooting
If you encounter permission denied on any .sh
script: