상황 : mlflow 관련 파이썬 파일 실행시 에러 발생
해결 : pip install mysqlclient
에러 :
error: subprocess-exited-with-error
× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [16 lines of output]
/bin/sh: 1: mysql_config: not found
/bin/sh: 1: mariadb_config: not found
/bin/sh: 1: mysql_config: not found
Traceback (most recent call last):
File "<string>", line 2, in <module>
File "<pip-setuptools-caller>", line 34, in <module>
File "/tmp/pip-install-8v03i4yk/mysqlclient_880543d834644aefaecaae3c75e25a50/setup.py", line 15, in <module>
metadata, options = get_config()
File "/tmp/pip-install-8v03i4yk/mysqlclient_880543d834644aefaecaae3c75e25a50/setup_posix.py", line 70, in get_config
libs = mysql_config("libs")
File "/tmp/pip-install-8v03i4yk/mysqlclient_880543d834644aefaecaae3c75e25a50/setup_posix.py", line 31, in mysql_config
raise OSError("{} not found".format(_mysql_config_path))
OSError: mysql_config not found
mysql_config --version
mariadb_config --version
mysql_config --libs
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
해결 :
$ sudo apt-get install libmysqlclient-dev
$ sudo dpkg --configure -a
$ sudo apt-get install libmysqlclient-dev
패키지 목록을 읽는 중입니다... 완료
의존성 트리를 만드는 중입니다... 완료
상태 정보를 읽는 중입니다... 완료
E: google-chrome-stable 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다.
$ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
$ sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
$ sudo apt-get update
$ sudo apt-get install google-chrome-stable
이 상황을 바로잡으려면 'apt --fix-broken install'을 실행해야 할 수도 있습니다.
다음 패키지의 의존성이 맞지 않습니다:
google-chrome-stable : 의존: fonts-liberation 하지만 %s 패키지를 설치하지 않을 것입니다
의존: libu2f-udev 하지만 %s 패키지를 설치하지 않을 것입니다
의존: libvulkan1 하지만 %s 패키지를 설치하지 않을 것입니다
E: 의존성이 맞지 않습니다. 패키지 없이 'apt --fix-broken install'을 시도해 보십시오 (아니면 해결 방법을 지정하십시오).
$ sudo apt --fix-broken install
sudo apt-get update
sudo apt-get install google-chrome-stable
sudo apt-get install libmysqlclient-dev
pip install mysqlclient
'Trouble Shooting' 카테고리의 다른 글
ModuleNotFoundError: No module named 'psycopg2' (0) | 2023.02.24 |
---|
댓글