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
'데이터 분석 > [Python] Troubleshooting' 카테고리의 다른 글
[python] SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78 크롬드라이버 버전 오류 (0) | 2021.09.13 |
---|---|
OverflowError: Python int too large to convert to C long (0) | 2021.09.09 |
[Python] ValueError: Plan shapes are not aligned (0) | 2021.08.19 |
[Python] np.where 조건 여러개 TypeError (0) | 2021.08.17 |
XGBoost 설치 에러 (0) | 2021.02.02 |