C 拡張機能のビルドでの「致命的エラー: Python.h: そのようなファイルまたはディレクトリはありません」のトラブルシューティング
共有ライブラリをビルドしようとしたときC 拡張機能を使用すると、次のエラーが発生する可能性があります:
utilsmodule.c:1:20: fatal error: Python.h: No such file or directory compilation terminated. ```` Addressing this error requires verifying the installation of Python header files and static libraries for development (dev). Depending on the operating system, the appropriate package manager should be employed for installation. **Package Managers:** * **apt (Ubuntu, Debian)** * `sudo apt-get install python-dev` (for python2.x) * `sudo apt-get install python3-dev` (for python3.x) * **yum (CentOS, RHEL)** * `sudo yum install python-devel` (for python2.x) * `sudo yum install python3-devel` (for python3.x) * **dnf (Fedora)** * `sudo dnf install python2-devel` (for python2.x) * `sudo dnf install python3-devel` (for python3.x) * **zypper (openSUSE)** * `sudo zypper in python-devel` (for python2.x) * `sudo zypper in python3-devel` (for python3.x) * **apk (Alpine)** * `sudo apk add python2-dev` (for python2.x) * `sudo apk add python3-dev` (for python3.x) * **apt-cyg (Cygwin)** * `apt-cyg install python-devel` (for python2.x) * `apt-cyg install python3-devel` (for python3.x)
以上がC 拡張機能をビルドするときに「致命的エラー: Python.h: そのようなファイルまたはディレクトリはありません」を修正する方法?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。