Answers for "ModuleNotFoundError: No module named 'MySQLdb' python 3"

2

ModuleNotFoundError: No module named 'MySQLdb' in windows

You can install mysqlclient with pip

If using Python3, try this:

pip3 install mysqlclient

or in Python2

pip install mysqlclient
Posted by: Guest on July-15-2021
0

modulenotfounderror no module named 'mysqldb' anaconda

conda install -c anaconda mysqlclient
Posted by: Guest on May-17-2021

Code answers related to "ModuleNotFoundError: No module named 'MySQLdb' python 3"

Python Answers by Framework

Browse Popular Code Answers by Language