I have a fresh install (started with a wiped drive) of Snow Leopard with the developer tools installed during the Snow Leopard installation. I then installed Python 2.6.2, replacing the Snow Leopard default python 2.6.1. I've tried to install PIL by (1) easy_install (2) pip and (3) downloading source and running "python setup.py build" manually. All yield the same error (link to pip log: http://drop.io/gi2bgw6). I've seen others have had success installing PIL using the Snow Leopard default python 2.6.1, so I'm not sure why I'm having so much trouble getting it to work with 2.6.2. Any help would be greatly appreciated!
feedback
|
|
The python.org Python was built with an earlier gcc. Try using gcc-4.0 instead of SL's default of 4.2:
See similar problem here. That gets past the stdarg problem. You may then run into later build problems with various dependent libraries. BTW, gcc-4.0 and gcc-4.2 are both included with Snow Leopard's Xcode 3 so no additional installs are needed. UPDATED 2011-05: Note, that the newer Xcode 4, released for experimental use with 10.6 and expected to be standard with 10.7, no longer includes PPC support so, if you install Xcode 4, this suggestion will not work. Options include using the newer 64-bit/32-bin Python 2.7.x installers from python.org or installing a newer Python 2.6 and PIL and the various 3rd-party libs using MacPorts, Homebrew, or Fink. | |||||||||||||||||||
feedback
|
|
The problem I ran into was that PIL was being compiled against PowerPC architecture (-arch ppc). Do this before setup/build/compile:
(Assuming you're on i386) | |||||
feedback
|
Modified AnswerHere are the steps that I took to successfully install PIL on Mac OS X 10.6 (without using MacPorts or Fink).
Note: I was not able to install PIL using Original AnswerFrom what I can see in your pip-log.txt file it appears that you installed Python 2.6.2 using the Mac Installer Disk Image from Python.org released on April 16, 2009. Can you confirm this? From the pip log, gcc failed with exit status 1. The offending
This appears to be a problem related to Snow Leopard changing the default value for the -arch flag from Your best solution that doesn't involve MacPorts or Fink would probably be to compile and install Python from the 2.6 release branch from either the Mercurial Python Repository or the Subversion Python Repository. According to Message 92315 of Issue 6802, Ronald Oussoren fixed this in Revision r74686. I've been seeing similar errors using Python 2.6.2 installed from the Mac Disk Image while trying to then install Fabric in a virtualenv, so I plan to compile and install from the 2.6 release maintenance branch. If you want, I'll update when successful. | |||||||||
feedback
|
|
10.6 Snow Leopard install PIL without the hassle and without keeping MacPorts :) | |||||
feedback
|
|
IT seems to me that the "No such file" is conjunction with stdarg.h is the most interesting error. There seems to be a header file missing. I don't know how to make sure it's installed on OS X, so this only half an answer, sorry about that, but maybe it pushes you in the right direction. | |||||||
feedback
|
|
May be you should try pre-build universal binaries from pythonmac site http://pythonmac.org/packages/py25-fat/index.html These are for python2.5 , with python2.5 included(so may or may not be usable for you), I have been using it since I had problem using self build PIL with py2app. | |||||
feedback
|
|
I found a simpler method. sudo port install python26 sudo port install python_select Then use python_select set python26 as default. Then just install PIL as normal. | |||
|
feedback
|
|
I was able to get PIP installed with SL's Python using these instructions: http://jetfar.com/libjpeg-and-python-imaging-pil-on-snow-leopard/ | ||||
|
feedback
|
|
Following steps worked for me:
| |||
|
feedback
|
|
Do you have XCode (comes on the Snow Leopard disc) installed? There are some key components (most notably GCC) that need to be installed which XCode handles for you. | |||
feedback
|
|
Solved in 2 steps: Step 1: Uninstalled and Installed Xcode, suggested here: http://binarylionstudios.com/blog/2011/01/30/error-stdarg.h-no-such-file-or-directory/ to remove Xcode properlly follow this answer: How to fully remove Xcode 4
use the install Xcode.app after you restart your mac Step 2: after xcode was reinstalled, the installation failed
to resolve that i followed this post: http://aravir-rose.blogspot.com/2011/12/installing-python-27s-imaging-library.html Good luck! | |||
|
feedback
|
|
On OS X Lion with current XCode and no gcc-4.0 I'm able to get around the missing stdard.h error by setting the follow environment variables:
I can't say I understand why this works. By the way this works for the Pillow fork of PIL too. | |||
|
feedback
|