Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named 'mysql-client'
How to remove the ModuleNotFoundError: No module named 'mysql-client' error?
Thanks
Hi,
In your python environment you have to install padas library.
You can install mysql-client python with following command:
pip install mysql-client
After the installation of mysql-client python library, ModuleNotFoundError: No module named 'mysql-client' error will be solved.
Thanks