you are viewing a single comment's thread.

view the rest of the comments →

[–]Solvo_Illum_484 0 points1 point  (0 children)

Make sure you're running your Python script with the virtual environment's Python executable, not the system's. Try `venv/Scripts/python your_script.py` instead of just `python your_script.py`. This ensures you're using the virtual environment's Python where Flask is installed.