当我安装PIL(或枕头)时,_imaging C模块无法安装。
这是一个常见错误,并且已经看到大多数人发现有用的ApPeL's play-by-play solution。不幸的是,当我运行sudo python setup.py install
时,我收到以下错误:
running install
running build
running build_py
running build_ext
--- using frameworks at /System/Library/Frameworks
building '_imaging' extension
gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -arch ppc -arch i386 -g -O2 -DNDEBUG -g -O3 -DHAVE_LIBJPEG -DHAVE_LIBZ -I/System/Library/Frameworks/Tcl.framework/Headers -I/System/Library/Frameworks/Tk.framework/Headers -IlibImaging -I/Library/Frameworks/Python.framework/Versions/2.7/include -I/usr/local/include -I/usr/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _imaging.c -o build/temp.macosx-10.3-fat-2.7/_imaging.o
unable to execute gcc-4.0: No such file or directory
error: command 'gcc-4.0' failed with exit status 1
当我在shell中运行python并尝试导入模块时,我收到了这些导入错误:
Santiagos-MacBook-Air:Imaging-1.1.7 sgarza621$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:32:06)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import PIL
>>> import Image
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named Image
>>> import _imaging
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named _imaging
我以前遇到过类似的错误,Ned Deily has been kind enough to provide solutions。我相信我目前的问题可能与前一个问题有关:
OSX: error when installing Python packages(包括此作为参考)
以下是其他一些可能有用的信息:
Santiagos-MacBook-Air:Imaging-1.1.7 sgarza621$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:32:06)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Santiagos-MacBook-Air:Imaging-1.1.7 sgarza621$ gcc
i686-apple-darwin11-llvm-gcc-4.2: no input files
Santiagos-MacBook-Air:Imaging-1.1.7 sgarza621$ which python
/Library/Frameworks/Python.framework/Versions/2.7/bin/python
Santiagos-MacBook-Air:Imaging-1.1.7 sgarza621$ echo $PATH
/Library/Frameworks/Python.framework/Versions/2.7/bin:/Library/Frameworks/Python.framework/Versions/2.7/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
如果gcc,Xcode或PIL,我不太熟悉这些细节。因此,如果您不介意,请提供详细的回复,以便我了解如何对您的解决方案采取行动。另外,如果我能提供更多详细信息,请告诉我,我会将其编辑成问题。
修改
我已按照MattDMo的建议安装了pillow
pip,Image
现已成功导入,但_imaging
没有(我认为c扩展名不是在我的机器上通过gcc正确编译,见上文):
Santiagos-MacBook-Air:riotry_mobile sgarza621$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:32:06)
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import Image
>>> import _imaging
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/_imaging.so, 2): Symbol not found: _jpeg_resync_to_restart
Referenced from: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/_imaging.so
Expected in: dynamic lookup
我正在使用PIL在Django Web应用程序上处理图像,当我尝试通过表单上传图像以供PIL处理时,我收到以下错误:
The _imaging C module is not installed
第二次编辑:
以下是与python和gcc相关的更多信息,我希望能够解释这个问题:
$ which python
/Library/Frameworks/Python.framework/Versions/2.7/bin/python
$ /usr/bin/python -c 'import sys;print(sys.version)'
2.7.2 (default, Jun 16 2012, 12:38:40)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)]
$ /usr/bin/python2.7 -c 'import sys;print(sys.version)'
2.7.2 (default, Jun 16 2012, 12:38:40)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)]
答案 0 :(得分:2)
许多(如果不是全部)问题(希望)可以通过使用Pillow来解决。 PIL开发只是暂时停止了一段时间,不幸的是代码在任何方面都没有向前兼容,所以随着编译器和Python的成熟,错误也随之而来。枕头分支稳定,积极开发,并且非常普遍,所以你可以放心使用它。 2.0版有许多增强功能,包括Python 3支持。但是,您必须使用from PIL import Image
而不是import Image
。祝你好运!
答案 1 :(得分:0)
哇。我希望这可以帮助将来遇到同样问题的人,因为那是残酷的。
解决方案是按照问题Ned Deily's answer的“…can't figure out the architecture type of…” problem when compiling Python C-extension with gcc中的说明为Mac安装python.org 64-bit/32-bit installer
。
首先,我确保默认的python是这个新的python(只是在shell中运行python
)。
然后,我重新安装了pip
,并运行了pip install PIL
。就这样做了!
为了确保,我在shell中打开了python,并导入了三个模块:
>>> import PIL
>>> import Image
>>> import _imaging
所有这些(最后)导入时没有错误。