12 lines
280 B
Bash
Executable File
12 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
# 启动 Telegram Bot
|
|
|
|
# 检查是否安装了 python-telegram-bot
|
|
if ! python -c "import telegram" &> /dev/null; then
|
|
echo "📦 安装 Bot 依赖..."
|
|
uv pip install "python-telegram-bot>=20.0"
|
|
fi
|
|
|
|
echo "🚀 启动 Checker Bot..."
|
|
python -m checker.bot.main
|