Allgemeine Ausnahmen und Lösungen von CentOS

1.pip3 mysqlclient installieren Fehler python setup.pygg_info Überprüfen Sie die Protokolle auf vollständige Befehlsausgabe.

Bei der Bereitstellung eines Django-Projekts unter CentOS muss häufig ein MySQL-Datenbankmodul wie mysqlclient installiert werden. Bei der Ausführung eines pip3 install mysqlclientBefehls kann ein Fehler wie folgt gemeldet werden:

ERROR: Command errored out with exit status 1:
     command: /usr/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-zmnd8v74/mysqlclient/setup.py'"'"'; __file__='"'"'/tmp/pip-install-zmnd8v74/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-pip-egg-info-jpy0d_w0
         cwd: /tmp/pip-install-zmnd8v74/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-zmnd8v74/mysqlclient/setup.py", line 15, in <module>
        metadata, options = get_config()
      File "/tmp/pip-install-zmnd8v74/mysqlclient/setup_posix.py", line 65, in get_config
        libs = mysql_config("libs")
      File "/tmp/pip-install-zmnd8v74/mysqlclient/setup_posix.py", line 31, in mysql_config
        raise OSError("{} not found".format(_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.

Dies liegt daran, dass das Paket mysql-devel fehlt und jetzt installiert werden muss. Um Konflikte mit Paketversionen und Abhängigkeitskonflikten zu lösen, müssen Sie gleichzeitig die yum-Quelle von mysql herunterladen und installieren. Der Befehl lautet wie folgt:

# 下载对应版本mysql的yum源的rpm包
wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm

# 安装rpm包
rpm -ivh mysql57-community-release-el7-8.noarch.rpm

yum install mysql-develFühren Sie dann den Befehl aus, um das mysql-devel-Paket zu installieren und wie folgt zu drucken:

Loaded plugins: fastestmirror
mysql-connectors-community                                                                                                                                                                 | 2.6 kB  00:00:00     
mysql-tools-community                                                                                                                                                                      | 2.6 kB  00:00:00     
mysql57-community                                                                                                                                                                          | 2.6 kB  00:00:00     
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package mysql-community-devel.x86_64 0:5.7.32-1.el7 will be installed
--> Finished Dependency Resolution

Das mysql-devel-Paket wurde erfolgreich installiert.

pip3 install mysqlclientFühren Sie abschließend den Befehl aus, um die mysqlclient-Engine erfolgreich zu installieren.

Ich denke du magst

Origin blog.csdn.net/CUFEECR/article/details/109700266
Empfohlen
Rangfolge