skip to Main Content

I get errors when I run this

import logging
from telegram import Update, ParseMode
from telegram.ext import Updater, CommandHandler, MessageHandler, filters

and I already did the

pip install python-telegram-bot in the terminal

I just want it ot run so I can run my telegram bot

2

Answers


  1. This might vary based on your OS, but try doing this instead

    pip3 install python-telegram-bot
    
    Login or Signup to reply.
  2. I tried pip3 install python-telegram-bot
    This resolved my issue

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search