Heim  >  Artikel  >  Backend-Entwicklung  >  Warum wird „mysql_config“ bei der Installation von „mysql-python“ über pip unter Ubuntu nicht gefunden?

Warum wird „mysql_config“ bei der Installation von „mysql-python“ über pip unter Ubuntu nicht gefunden?

DDD
DDDOriginal
2024-11-15 06:27:02647Durchsuche

Why is `mysql_config` not found when installing `mysql-python` via pip on Ubuntu?

Issues Installing mysql-python via pip on Ubuntu

While attempting to install mysql-python using pip, an error message indicates that mysql_config is not found. This error occurs due to the absence of mysql_config on the system or the inability of the installer to locate it.

Solution

To resolve the issue, ensure that mysql_config is installed on your system. For Debian/Ubuntu-based systems, install the required package:

sudo apt-get install libmysqlclient-dev

In the case of self-compilation of the MySQL suite, mysql_config may not be added to the path.

Recent Ubuntu Systems

For recent versions of Debian/Ubuntu (as of 2018), use the following command:

sudo apt install default-libmysqlclient-dev

Once mysql_config has been correctly installed or added to the path, you should be able to successfully install mysql-python using pip.

Das obige ist der detaillierte Inhalt vonWarum wird „mysql_config“ bei der Installation von „mysql-python“ über pip unter Ubuntu nicht gefunden?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn