Skip to content

Installation

Elxes edited this page Jan 10, 2025 · 1 revision

EXEUbot Configuration Guide

Welcome to the EXEUbot setup guide! This guide will help you configure and run your userbot using either Docker or a traditional Python environment. Choose the method that best suits your setup.


Method 1: Using Docker

  1. Clone the repository:

    git clone https://github.com/EXE-Official/EXEUbot
  2. Navigate to the project directory:

    cd EXEUbot
  3. Update the credentials and settings in the config.ini file. Make sure to edit it with your specific configuration.

  4. Build the Docker image:

    sudo docker build -t exeubot:1.30 .
  5. Run the Docker container:

    sudo docker run --rm exeubot:1.30

Method 2: Without Docker

  1. Clone the repository:

    git clone https://github.com/EXE-Official/EXEUbot
  2. Navigate to the project directory:

    cd EXEUbot
  3. Update the credentials and settings in the config.ini file. Make sure to edit it with your specific configuration.

  4. Install pipx (required for Python package management):

  5. Install poetry (used for dependency management):

  6. Install dependencies using poetry:

    poetry install
  7. Run the bot by executing the main.py file:

    • On Linux/macOS:
      python3 main.py
    • On Windows (PowerShell):
      python main.py

You are all set! If you encounter any issues, feel free to check the EXEUbot GitHub repository for additional support or open an issue.

Clone this wiki locally