# normal install ## Prerequis - root acces - CPU 2 core - 1024Mo of RAM - 8196Mo or more of storage - Debian based os (11 or 12) ## Step 1 Update and upgrade your os ``` sudo apt update && sudo apt upgrade -y sudo apt autoremove ``` ## Step 2 Install requirements ``` sudo apt install git python3 python3-venv python3-pip ``` ## Step 3 Get the bot and go in the folder ``` git clone https://github.com/Zerbaib/CleanDiscordBot.git cd CleanDiscordBot ``` ## Step 4 Create venv and activate ``` python3 -m venv venv source venv/bin/activate ``` ## Step 5 install bot requirements ``` pip install -r requirements.txt ``` ## Step 6 Run the bot ``` python3 main.py ```