본문 바로가기
Programming/Database

Ubuntu MySQLClient 설치시 에러 발생 해결 OSError: mysql_config not found

by 하하호호 2021. 12. 2.
반응형

 

명령어
$ sudo pip install mysqlclient
Error
OSError: mysql_config not found

원인
에러가 발생하는 이유는 mysqlclient 모듈을 설치하기 위한 종속성이 완성되지 않았기 때문이다.
즉, mysqlclient를 설치하기 전에 미리 설치해줘야 하는 모듈이 존재한다는 의미다. 디렉터리에서
OS error가 발생하는 이유는 그것이다.

참고로 mysql-python 모듈은 python2.x 에서 사용하던 모듈이다.
python3.x를 사용하는 유저라면 mysqlclient를 사용하도록.
해결
$ sudo apt-get install libmysqlclient-dev -y
$ sudo pip install mysqlclient

반응형

댓글