Important: Please don't use your real/main Telegram account as an assistant.
- The assistant account might leave all groups & channels automatically
- You may lose group ownership/admin rights
- Always use a spare/fake account
Requirements: Python 3.11 · FFmpeg · Node.js · PM2
📋 Click to expand VPS Setup Guide
1️⃣ Update System
sudo apt update && sudo apt upgrade -y2️⃣ Install Python 3.11
sudo apt install software-properties-common -y
sudo add-apt-repository ppa:deadsnakes/ppa -y && sudo apt update
sudo apt install python3.11 python3.11-venv python3.11-dev -y3️⃣ Install Required Packages
sudo apt install ffmpeg git curl nano nodejs npm -y4️⃣ Install PM2
sudo npm install -g pm25️⃣ Clone Repository
git clone https://github.com/SUDEEPBOTS/YUKIMUSIC.git
cd YUKIMUSIC6️⃣ Create Virtual Environment
python3.11 -m venv venv
source venv/bin/activate7️⃣ Install Requirements
pip install --upgrade pip
pip install -r requirements.txt8️⃣ Setup Environment Variables
cp sample.env .env
nano .env9️⃣ Start Bot with PM2
pm2 start "venv/bin/python -m YUKIMUSIC" --name YukiBot
pm2 save🔍 Check Logs
pm2 logs YukiBot