Home > database >  Database(mysql) integrate with python in VS code
Database(mysql) integrate with python in VS code

Time:02-18

when i import the Mysql with python in VS Code it show error after the installation of mysql please help

CodePudding user response:

Please share the snap of error you are getting. Till then this resource might be helpful: https://pynative.com/python-mysql-database-connection/#h-how-to-connect-mysql-database-in-python

CodePudding user response:

If you tell me what error code you are getting, it might be of more help. My guess is that you most likely didn't have pymysql installed.

pip install pymysql
  • Related