I tried to use Python's Image Module on my Mac (new to mac)and I had trouble setting it up. I have Yosemite and some of the posts that I found online didn't work. I ended up installing Homebrew and I finally got PIL on my computer. However, instead of using import image
(which I saw people doing it online), I have to use from PIL import image
. Is there key difference between import Image
and from PIL import Image
. It's the first time that I actually use Image
module.
One more question, do I actually need to install third party tools like Homebrew and Macports to set up my environment?