"ModuleNotFoundError" when trying to run Python's Flask-WTF ...
www.reddit.com › r › linuxquestionsModuleNotFoundError: No module named 'Flask_WTF' I tried all kinds of things to solve this problem, but it doesn't work. I was told it might be a path issue, so I checked my paths. When I type "pip show flask-wtf" in my terminal, I get the following location: /home/mint/.local/lib/python3.6/site-packages Then when I run python3 and test its location doing "sys.executable", I get the following:
ModuleNotFoundError: No module named 'flask_wtf' in python
stackoverflow.com › questions › 55066965My first line of the program is from flask_wtf import FlaskForm. It gives me the error ModuleNotFoundError: No module named 'flask_wtf' I have followed the following steps to make sure i have activated the virtual environment and flask wtf was installed in the virtual environment and not global. Step 1: Went to the virtual environment and activated the environment C:\Users\Shraddha\PycharmProjects\FlaskProject\venv\scripts activate.