I am receiving that error when I am running this code: from flaskext.mysql import MySQL
Here is the error:
ModuleNotFoundError: No module named 'flaskext'
- My Python version is 3.9
- I've MySQL DB installed.(While installing, my Python Connector is failed and according to here https://bugs.mysql.com/bug.php?id=101128, this is a MySql bug that still haven't be debugged.)
- I've also installed Flask-MySQL by
pip install Flask-MySQL
, MySQL connector by pip3 installmysql-connector-python
andFlask-Ext by pip install Flask-Ext
. All of them are successfully installed but I am still facing with same error. - I tried every possible solution from ImportError: No module named flask.ext.mysql . How can I solve it? Thx in advance