-
[MySQL] mysqlclient 설치 에러 해결 방법DataBase/MySQL 2022. 8. 15. 23:44728x90
python3 에서 mysql db가 사용가능한 mysqlclient 모듈을 설치할 때,
> pip install mysqlclient
error: command 'gcc' failed with exit status 1 .. note: This error originates from a subprocess, and is likely not a problem with pip. error: legacy-install-failure Encountered error whie trying to install package. > mysqlclient
해당 에러가 나오면서 설치에 실패했다고 나옵니다.
=> Python 3 and MySQL 개발용 라이브러리 사전 설치 필요
For UBUNTU or Debian
sudo apt-get install python3-dev default-libmysqlclient-dev build-essential
Red Hat / CentOS
sudo yum install python3-devel mysql-devel
다시 설치를 해보면 정상 실행 확인이 가능합니다!
> pip install mysqlclient
- 이상 오늘의 삽질일기 끝!
여기저기 삽질도 해보고
날려도 먹으면서
배우는 게
결국 남는거다
- Z.Sabziller
'DataBase > MySQL' 카테고리의 다른 글
[MySQL] docker 컨테이너 mysql 서버 error(feat. port 추가하기) (0) 2023.03.22 [MySQL] mysql too many connection 에러 해결 (0) 2023.03.03 Django-MySQL DB 연결하기(feat. mysqlclient ) (0) 2021.04.23 MySQL 설치 및 계정 설정(feat. MacOS) (0) 2021.04.16