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
진행시, 에러 없이 정상적으로 설치됨을 확인할 수 있습니다.
'Development > Flask with Python' 카테고리의 다른 글
[Flask1.1][Mysql] 실습 - 2 : 홈 화면 추가 및 로그아웃 기능 구현 (0) | 2020.01.02 |
---|---|
[Flask1.1][Mysql] 실습 - 1 : Flask와 Mysql 연동하여 로그인 기능 구현하기 (0) | 2019.12.29 |
[Python3][Flask1.1] html에서의 if문 사용법 (0) | 2019.12.17 |
[Solved][Flask1.1] 외부 css 파일 적용 방법 (0) | 2019.12.16 |
[Flask][jsonify] 많은 데이터들을 json형태로 보내주는 API서버 만들기 (2) | 2019.12.14 |