Весь текст ниже для телеграм бота на Пайтон. Ошибку и код скинул ниже (токен скрыл намеренно)
import telebot
TOKEN = "YOUR_TOKEN_HERE" # Укажите ваш токен вместо YOUR_TOKEN_HERE
bot = telebot.TeleBot(TOKEN)
@bot.message_handler(func=lambda message: True)
def echo_all(message):
bot.forward_message(chat_id="@iPeshkoV89", from_chat_id=message.chat.id, message_id=message.message_id)
bot.polling()
А вот и ошибка:
Traceback (most recent call last):
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in <module>
start(fakepyfile,mainpyfile)
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start
exec(open(mainpyfile).read(), __main__.__dict__)
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'telebot'
[Program finished]
import telebot
TOKEN = "YOUR_TOKEN_HERE" # Укажите ваш токен вместо YOUR_TOKEN_HERE
bot = telebot.TeleBot(TOKEN)
@bot.message_handler(func=lambda message: True)
def echo_all(message):
bot.forward_message(chat_id="@iPeshkoV89", from_chat_id=message.chat.id, message_id=message.message_id)
bot.polling()
А вот и ошибка:
Traceback (most recent call last):
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in <module>
start(fakepyfile,mainpyfile)
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start
exec(open(mainpyfile).read(), __main__.__dict__)
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'telebot'
[Program finished]