[20:54:00] <chas11man> I've found a bug in PIL where after a certain amount of draws, it would seem by number of pixels drawn, PIL errors and says something about unknown raw mode
[20:54:28] <chas11man> Basically it works fine, then I add one more draw and it breaks
[21:02:55] <chas11man> This is happening with both lines and text
[22:20:49] <aclark> mellow1638: only if you ask a question :-)
[22:20:50] <mellow1638> I am havning installation issues on Mac OS X 10.8
[22:21:15] <mellow1638> ok i will describe issue and end with question, thanks :)
[22:22:48] <mellow1638> So i install homebrew, pip tried to install Pillow, got clang error, googled that... ended up manually istalling Pillow 2.3.1 running 'sudo setup.py...' then updating using pip
[22:24:03] <mellow1638> but, when I try to import (from PIL import Image) i get error
[22:41:15] <mellow1638> Traceback (most recent call last): File "setup.py", line 19, in <module> from setuptools import Extension, setup, find_packages ImportError: No module named setuptools
[22:41:17] <wiredfool> I'm really not sure how python is installed on my mac. It's been updated and dragged through from the 2.3 era
[22:41:56] <wiredfool> ah. you'll need setup tools.
[22:42:17] <wiredfool> If you've got virtualenv anywhere, the easiest way is to make a virtualenv with that python interpreter.
[22:42:28] <wiredfool> otherwise, you'll have to install setuptools for that python.
[22:43:20] <mellow1638> Sorry, I am a noob at installing packages. I understand virtual env is kinda like a copy environment right?