This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Auto installer untuk Web Streaming YouTube di VPS | |
echo "=== Update & install dependencies ===" | |
apt update -y | |
apt upgrade -y | |
apt install -y python3 python3-pip ffmpeg | |
echo "=== Install Python modules ===" | |
pip3 install flask apscheduler |