I've tried googling & looking up some other people's questions. However, I still couldn't find a clear/simple recipe to install PIL (for python 2.6 or 2.7) on mac os x 10.7.2 Lion. Can someone help me out?
|
|
|
If you use homebrew, you can install the PIL with just
(assuming Alternatively, you can just download/build/install it from source:
I ran the above just now (on OSX 10.7.2, with XCode 4.2.1 and System Python 2.7.1) and it built just fine, though there is a possibility that something in my environment is non-default. |
|||||||||||
|
|
This is something I wrote for the folks at work. It's a full workup for getting a clean OSX Lion working virtualenv using django + git + some other stuff: https://gist.github.com/1781374 The most important lines for you are: Install libjpeg (PIL req)
Install freetype (more PIL requirements)
Install PIL (usually in the requirements.txt so I don't have it in the above linked instruction)
or some folks have to (not sure what the configuration difference that causes this is):
EDIT:ALSO note that with LION command line tools aren't installed by default, you have to manually enable them, open XCode got to preferences then downloads and select command line tools to be installed before you can compile anything (noted at the top of my GIST) |
||||
|
|
|
One way is via Macports Install the base macports as per the installation guide Then install the py27-pil port by You will then need to use the python installed by macports by using I find it easier to use a package manager like macports (or fink or homebrew) when you require C libraries to be installed as well as python code. |
|||||||
|
|
I was trying to execute a Python script with administrative privileges in a Mac (running on Lion) and looking at this post I found out that all I needed to do was launch Python with Administrative privileges by using the "sudo" command in the Terminal. Like that: "sudo Python" and then executing the script. I know it is pretty basic but it was exactly what I needed to get my script working... |
|||
|
|
|
On Mac OS X, if you prefer to install PIL using pip inside a virtualenv, then you might have to make PIL use Mac's builtin freetypes by running:
|
|||
|
|
