Python 在Cygwin上安装PIL

Python 在Cygwin上安装PIL,python,gcc,cygwin,python-imaging-library,Python,Gcc,Cygwin,Python Imaging Library,我整个上午都在努力在Cygwin上安装PIL。我得到的错误与我使用谷歌发现的常见错误不一致。也许linux大师可以在这个输出中看到一个明显的问题: $ python setup.py install running install running build running build_py running build_ext building '_imaging' extension gcc -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall

我整个上午都在努力在Cygwin上安装PIL。我得到的错误与我使用谷歌发现的常见错误不一致。也许linux大师可以在这个输出中看到一个明显的问题:

$ python setup.py install
running install
running build
running build_py
running build_ext
building '_imaging' extension
gcc -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DHAVE_LIBZ -I/usr/include/freetype2 -IlibImaging -I/usr/include -I/usr/include/python2.5 -c _imaging.c -o build/temp.cygwin-1.7.2-i686-2.5/_imaging.o
In file included from /usr/lib/gcc/i686-pc-cygwin/3.4.4/include/syslimits.h:7,
                 from /usr/lib/gcc/i686-pc-cygwin/3.4.4/include/limits.h:11,
                 from /usr/include/python2.5/Python.h:18,
                 from _imaging.c:75:
/usr/lib/gcc/i686-pc-cygwin/3.4.4/include/limits.h:122:61: limits.h: No such file or directory
In file included from _imaging.c:75:
/usr/include/python2.5/Python.h:32:19: stdio.h: No such file or directory
/usr/include/python2.5/Python.h:34:5: #error "Python.h requires that stdio.h define NULL."
/usr/include/python2.5/Python.h:37:20: string.h: No such file or directory
/usr/include/python2.5/Python.h:39:19: errno.h: No such file or directory
/usr/include/python2.5/Python.h:41:20: stdlib.h: No such file or directory
/usr/include/python2.5/Python.h:43:20: unistd.h: No such file or directory
/usr/include/python2.5/Python.h:55:20: assert.h: No such file or directory
In file included from /usr/include/python2.5/Python.h:57,
                 from _imaging.c:75:
/usr/include/python2.5/pyport.h:7:20: stdint.h: No such file or directory
In file included from /usr/include/python2.5/Python.h:57,
                 from _imaging.c:75:
/usr/include/python2.5/pyport.h:89: error: parse error before "Py_uintptr_t"
/usr/include/python2.5/pyport.h:89: warning: type defaults to `int' in declaration of `Py_uintptr_t'
/usr/include/python2.5/pyport.h:89: warning: data definition has no type or storage class
/usr/include/python2.5/pyport.h:90: error: parse error before "Py_intptr_t"
/usr/include/python2.5/pyport.h:90: warning: type defaults to `int' in declaration of `Py_intptr_t'

。。。更多类似这样的行看起来需要安装GNULIBC,因为 syslimits.h;限制。h;errno.h;stdlib.h;assert.h等都属于它


对于windows,您可以使用二进制安装程序;如果您不想在CYGWIN下构建PIL,您可以从其中选择一个,

您可以下载一个新的CYGWIN二进制文件并在Python部分安装映像库。这将使PIL可用于cygwin python 2.7。

我已经安装了libglib2.0-devel。我假设这就是GNULIBC库。不过,运气不好。我更喜欢在cygwin中工作,而不是使用windows cmd工具,所以我真的很想安装它。