본문 바로가기

기타 etc.

pip install mysql-python 에러

python에서 mysql을 사용하려고 다음과 같은 방식으로 설치하려고 했는데

pip install mysql-python

어디서부터 봐야할지도 모르겠는 에러가 났다.

 

stackoverflow.com/questions/454854/no-module-named-mysqldb

 

No module named MySQLdb

I am using Python version 2.5.4 and install MySQL version 5.0 and Django. Django is working fine with Python, but not MySQL. I am using it in Windows Vista.

stackoverflow.com

위 링크를 보면 'pip install mysql-python'은 python2에서 사용하는 명령어라고 한다.

python3는 'pip install mysqlclient'라고 입력하면 된다.