Skip to content

Latest commit

 

History

History
120 lines (88 loc) · 4.24 KB

Manual_Installation.md

File metadata and controls

120 lines (88 loc) · 4.24 KB

Contributors Forks Stargazers Issues MIT License LinkedIn


Visualization

FeurBot

Explore the docs »
--------------------
Report Bug · Request Feature

Manual Installation of the bot

If the install.sh script doesn't work for you, you can follow these steps to install the bot manually.

  1. Install Python 3.8.5 or higher and pip. You can download it here or by using the following command on Linux:

    • Debian/Ubuntu:
      sudo apt install python3 python3-pip -y
  2. Install the required python packages using pip:

    python3 -m pip install --upgrade pip
    python3 -m pip install -r requirements.txt

    If the requirements.txt file didn't work, you can install the required packages manually using the following command:

    python3 -m pip install discord.py psutil asyncio youtube_dl discord.py[voice] aiohttp mysql-connector-python
  3. Install MariaDB or MySQL. You can download it here or by using the following command on Linux:

    • Debian/Ubuntu:
      sudo apt install mariadb-server mariadb-client -y
  4. Create a database for FeurBot. You can do it by using the following command on Linux:

    • Debian/Ubuntu:
      sudo mysql -u root -p
      

    Then, you can create the database by using the following command:

    CREATE DATABASE FeurBot;
    CREATE USER 'FeurBot'@'localhost' IDENTIFIED BY 'FeurBot';
    GRANT ALL PRIVILEGES ON FeurBot.* TO 'FeurBot'@'localhost';
    FLUSH PRIVILEGES;

    You can now create the tables using the SQL script.

    mysql -u FeurBot -p FeurBot < FeurBot.sql



You can now following the next steps in the README file.

Contact

Isnubi - @Louis_Gambart - contact@louis-gambart.fr
Discord: isnubi#6221

Project Link: https://github.com/Isnubi/FeurBot

(back to top)