ModuleNotFoundError: No module named 'MySQLdb'

데이터 분석/[Python] Troubleshooting

ModuleNotFoundError: No module named 'MySQLdb'

INCHELIN 2020. 9. 13. 21:29
728x90

다음과 같은 방법으로 데이터베이스에 연결해보지만 에러가 나는 경우가 있습니다.

import pymysql
from sqlalchemy import create_engine

engine = sqlalchemy.create_engine('mysql://')

ModuleNotFoundError: No module named 'MySQLdb'

 

이럴 경우, 다음과 같이 수정해서 실행해보니 에러없이 실행이 될 수 있습니다 :)

engine = sqlalchemy.create_engine('mysql+pymysql://')

 

728x90