Home > Database > Mysql Tutorial > How to Fix 'fatal error C1083: Cannot open file 'mysql.h': No such file or directory' When Installing mysqlclient?

How to Fix 'fatal error C1083: Cannot open file 'mysql.h': No such file or directory' When Installing mysqlclient?

Linda Hamilton
Release: 2025-01-10 14:36:41
Original
285 people have browsed it

How to Fix

Failed to install mysqlclient: error "fatal error C1083: Cannot open file 'mysql.h': No such file or directory"

When installing the mysqlclient library using pip, you may encounter the following error message:

<code>fatal error C1083: Cannot open file: 'mysql.h': No such file or directory</code>
Copy after login

This error is usually caused by a missing mysql.h header file, which is essential for building the mysqlclient extension.

Solution

To resolve this issue, you can download the unofficial Windows binaries for your version of Python from this website. This method avoids the hassle of using the Visual Studio build tools.

  1. Download the mysqlclient.whl file appropriate for your Python version.
  2. Install the downloaded WHL file using the following command:
<code>pip install "下载文件的路径"</code>
Copy after login

For example, if you downloaded mysqlclient‑1.3.13‑cp36‑cp36m‑win_amd64.whl, you should execute the following command:

<code>pip install mysqlclient‑1.3.13‑cp36‑cp36m‑win_amd64.whl</code>
Copy after login

This method should successfully install the mysqlclient library without the above error.

The above is the detailed content of How to Fix 'fatal error C1083: Cannot open file 'mysql.h': No such file or directory' When Installing mysqlclient?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template