When installing some supported packages in python3.2.2, usually got a error: (cannot remember clearly but like array object or so)
Try to change the following file:
%python%/Lib/distutils/command/build_scripts.py line 15:
first_line_re = re.compile(b'^#!.*python[0-9.]*([ \t].*)?$')
to:
first_line_re = re.compile('^#!.*python[0-9.]*([ \t].*)?$')