我们正在尝试安装 PIL 并收到错误
error: command 'gcc' failed with exit status 1
许多类似的问题,包括这个问题(安装 Reportlab (error: command 'gcc' failed with exit status 1 )),建议安装python-dev
包。
这在哪里可以为 Windows 7 采购。pip install python-dev
没有工作。
我们正在尝试安装 PIL 并收到错误
error: command 'gcc' failed with exit status 1
许多类似的问题,包括这个问题(安装 Reportlab (error: command 'gcc' failed with exit status 1 )),建议安装python-dev
包。
这在哪里可以为 Windows 7 采购。pip install python-dev
没有工作。
似乎没有python-dev
适用于 Windows 的软件包。但是 Windows 的 Python 安装程序通常会在 Python 主目录中安装一个子目录include
。
因此,使用 Python,C:\Python
您将获得:
在这个include
目录中你会发现Python.h
,它可以被包含或引用。
当我以前在 Windows 上开发时,这个带有预编译二进制文件的网站非常方便:http ://www.lfd.uci.edu/~gohlke/pythonlibs/
您会在那里找到 PIL 和 ReportLab 的预编译版本。希望对您有所帮助。