개요
MacOS에서 파이썬 DB 관련 라이브러리인 mysqlclient와 psycopg2를 사용할 때 겪을 수 있는 의존 라이브러리에 관한 정리 글 입니다.
brew를 사용합니다.
mysqlclient
오류
Exception: Can not find valid pkg-config name.
Specify MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS env vars manually
설정법
mysqlclient를 사용하기 위해서는 mysql또는 mysql-client를 설치해야한다.
mysql 또는 mysql-client 설치
mysql
brew install mysql pkg-config
mysql-client
용량: 약 126MB
mysql-client@9.0은 mysql_native_password과 관련된 오류가 발생하니 8.4버전 설치를 권장한다.
brew install mysql-client@8.4 pkg-config
echo 'export PATH="/opt/homebrew/opt/mysql-client@8.4/bin:$PATH"' >> ~/.zshrc
echo 'export LDFLAGS="-L/opt/homebrew/opt/mysql-client@8.4/lib"' >> ~/.zshrc
echo 'export CPPFLAGS="-I/opt/homebrew/opt/mysql-client@8.4/include"' >> ~/.zshrc
echo 'export PKG_CONFIG_PATH="/opt/homebrew/opt/mysql-client@8.4/lib/pkgconfig"' >> ~/.zshrc
source ~/.zshrc
단순 export로 환경변수 추가시에 이후 값이 사라질 수 있으니 .zshrc에 직접 추가해준다.
환경변수 추가
그래도 문제가 발생한다면 MYSQLCLIENT_CFLAGS과 MYSQLCLIENT_LDFLAGS를 직접 추가해준다.
# 값 확인
mysql_config --cflags
mysql_config --libs
# 설정
export MYSQLCLIENT_CFLAGS="$(mysql_config --cflags)"
export MYSQLCLIENT_LDFLAGS="$(mysql_config --libs)"
mysqlclient 설치
pip install mysqlclient
GitHub - PyMySQL/mysqlclient: MySQL/MariaDB connector for Python
GitHub - PyMySQL/mysqlclient: MySQL/MariaDB connector for Python
MySQL/MariaDB connector for Python. Contribute to PyMySQL/mysqlclient development by creating an account on GitHub.
github.com
Did you install mysqlclient? 오류
pymysql을 추가해준다.
pip install pymysql
import pymysql
pymysql.install_as_MySQLdb()
Reference
GitHub - PyMySQL/mysqlclient: MySQL/MariaDB connector for Python
GitHub - PyMySQL/mysqlclient: MySQL/MariaDB connector for Python
MySQL/MariaDB connector for Python. Contribute to PyMySQL/mysqlclient development by creating an account on GitHub.
github.com
Can not install apache-airflow-providers-mysql: pkg-config error
Can not install apache-airflow-providers-mysql: pkg-config error
I'm using Debian/Ubuntu, and I am trying to install an Airflow provider in my Python virtual environment: $ pip install apache-airflow-providers-mysql error: subprocess-exited-with-error × Get...
stackoverflow.com
`mysql-client` 9.0 does not include `mysql_native_password` plugin · Issue #180498 · Homebrew/homebrew-core
brew config HOMEBREW_VERSION: 4.3.12 ORIGIN: https://github.com/Homebrew/brew HEAD: 874d2da45344d3b27aa740e555b0210d8c474220 Last commit: 9 days ago Core tap JSON: 08 Aug 13:26 UTC Core cask tap JS...
github.com
M1 error- Django mysql 연동 (Did you install mysqlclient?)
M1 error- Django mysql 연동 (Did you install mysqlclient?)
Problem >M1에서 mysql, mysql-client를 brew로 설치 이후, python manage.py runserver시 나오는 에러 메세지다. Solution > 로 pymysql을 설치해주고 setting.py 에 상기 코드를 추가해준다. +α mysql 'NAME', 'PASSWORD' 도 setting
velog.io
psycopg2
신규 프로젝트에는 psycopg2가 아닌 psycopg3 사용을 권장
오류
running egg_info
writing psycopg2.egg-info/PKG-INFO
writing dependency_links to psycopg2.egg-info/dependency_links.txt
writing top-level names to psycopg2.egg-info/top_level.txt
Error: pg_config executable not found.
pg_config is required to build psycopg2 from source. Please add the directory
containing pg_config to the $PATH or specify the full executable path with the
option:
python setup.py build_ext --pg-config /path/to/pg_config build ...
or with the pg_config option in 'setup.cfg'.
If you prefer to avoid building psycopg2 from source, please install the PyPI
'psycopg2-binary' package instead.
For further information please check the 'doc/src/install.rst'
설정법
psycopg2를 사용하기 위해서는 postgresql를 설치하거나, 컴파일러나 외부 라이브러리를 필요로 하지 않는 psycopg2-binary 패키지를 이용해야 한다.
postgresql 설치
용량: 약 46MB
brew install postgresql
Reference
GitHub - psycopg/psycopg2: PostgreSQL database adapter for the Python programming language
GitHub - psycopg/psycopg2: PostgreSQL database adapter for the Python programming language
PostgreSQL database adapter for the Python programming language - psycopg/psycopg2
github.com
'파이썬 (Python)' 카테고리의 다른 글
Celery 재시도 로직과 Exponential Backoff and Jitter (0) | 2025.03.14 |
---|---|
Python isinstance() 사용시의 주의점 (0) | 2025.03.13 |
Celery worker OOM Killed 문제 해결기 (0) | 2025.03.07 |
파이썬 이진탐색 모듈 (0) | 2024.04.05 |
VSCode로 Poetry 사용시 interpreter 인식 시키는 방법 (0) | 2022.08.24 |