I'm writing a telegram bot with python
问题 I want to write a telegram bot via Python, but it doesn't work. import telebot bot = telebot.TeleBot("my_token") @bot.message_handler(content_types=['text']) def sending(message): bot.send_message(message.chat.id, message.text) # RUN bot.polling(non_stop=True) Returns to me the following problem. AttributeError: 'TeleBot' object has no attribute 'message_handler' 回答1: This is a common issue, unfortunately. I guess you installed the lib as "pip install telebot", which leads to another package.