21 lines
503 B
Plaintext
21 lines
503 B
Plaintext
# ==========================================
|
|
# INSTALL TELEGRAM DEPENDENCIES (Run FIRST!)
|
|
# ==========================================
|
|
|
|
import sys
|
|
import subprocess
|
|
|
|
print("📦 Installing python-telegram-bot...")
|
|
|
|
subprocess.check_call([
|
|
sys.executable, "-m", "pip", "install",
|
|
"python-telegram-bot", "--upgrade"
|
|
])
|
|
|
|
print("\n✅ python-telegram-bot installed!")
|
|
|
|
# Verify
|
|
import telegram
|
|
print(f"✅ Version: {telegram.__version__}")
|
|
print(f"\n🎯 Now restart kernel and run Cell 17 again!")
|