ERROR 발생 화면 예시

 

필자는 pip install flask-mysqldb 커맨드 입력시 장애가 발생했습니다.

# 에러 발생 문구 예시
ERROR: Command errored out with exit status 1:
     command: /usr/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-fgjv372k/mysqlclient/setup.py'"'"'; __file__='"'"'/tmp/pip-install-fgjv372k/mysqlclient/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-install-fgjv372k/mysqlclient/pip-egg-info
         cwd: /tmp/pip-install-fgjv372k/mysqlclient/
    Complete output (12 lines):
    /bin/sh: mysql_config: command not found
    /bin/sh: mariadb_config: command not found
    /bin/sh: mysql_config: command not found
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-fgjv372k/mysqlclient/setup.py", line 16, in <module>
        metadata, options = get_config()
      File "/tmp/pip-install-fgjv372k/mysqlclient/setup_posix.py", line 61, in get_config
        libs = mysql_config("libs")
      File "/tmp/pip-install-fgjv372k/mysqlclient/setup_posix.py", line 29, in mysql_config
        raise EnvironmentError("%s not found" % (_mysql_config_path,))
    OSError: mysql_config not found
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

 

 

문제는 python 이나 pip 가 아닌 DB에 있었습니다.

 

Centos 에서 기본으로 제공되는 DB가 Mysql 이 아닌 MariaDB 이다보니 위와 같은 커맨드에 비정상작동했습니다.

 

$ yum install mariadb-devel

을 통해 개발자도구 설치를 진행해주고 난 후

$ pip install flask_mysqldb

진행시, 에러 없이 정상적으로 설치됨을 확인할 수 있습니다.

 

 

 

 

+ Recent posts