SimpleCV funktioniert nicht Python3.4 SyntaxError: Fehlende Klammern im Aufruf von 'print'

So versuche ich, SimpleCV auf meinem Mac zu installieren, auf dem OS X 10.10.3 (Yosemite) ausgeführt wird. Ich habe Python 3.4.3 installiert und Pygame ist auch installiert (was ich anscheinend für SimpleCV brauche). Ich habe SimpleCV durch Ausführen von @ installier

    sudo pip3 install SimpleCV

und es heruntergeladen und installiert SimpleCV-1.3.tar.gz. Wenn ich dann versuche, es in Python auszuführen, bekomme ich Folgendes:

$ python3
Python 3.4.3 (default, Jun 10 2015, 19:56:14) 
[GCC 4.2.1 Compatible Apple LLVM 6.1.0 (clang-602.0.53)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import SimpleCV
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.4/site-packages/SimpleCV/__init__.py", line 3, in <module>
    from SimpleCV.base import *
  File "/usr/local/lib/python3.4/site-packages/SimpleCV/base.py", line 139
    print 'unit test'
                ^
SyntaxError: Missing parentheses in call to 'print'
>>>