[Error] sh: mysql_config: not found

less than 1 minute read


ERROR sh: mysql_config: not found

  • 상황
    • Docker Ubuntu 18.04에서 mysql library 설치 시(pip3 install mysql) mysql config 못 찾는 문제 발생
  • 해결
    • ubuntu에 관련 라이브러리 설치

Solution

apt-get update -y
apt-get install libmysqlclient-dev

ref