I'm trying to setup a server in python anywhere but I'm facing module import errors
File "/home/Adejuwonlo/Twitter_Automation/./services/telegram_service.py", line 2, in <module
>
from telegram import Update, InlineKeyboardMarkup, InlineKeyboardButton, ParseMode
ModuleNotFoundError: No module named 'telegram'
>>>
Although I have set up my virtual environment correctly and I rain my main.py script in the console (It worked) but when I run Flask app it fails to import my modules
I have tried different method and also deleted the default venv then pip install virtualenv and created a new venv and then installed my requirements.txt but still the error doesn't get fixed.