SyntaxError: from __future__ imports must occur at the beginning of the file
server.py, client.py, types.py 이 세개 파일을 찾아서 열어보면
ident = '$Id: Server.py,v 1.21 2005/02/15 16:32:22 warnes Exp $' from version import __version__ from __future__ import nested_scopes
이 부분을
from __future__ import nested_scopes ident = '$Id: Server.py,v 1.21 2005/02/15 16:32:22 warnes Exp $' from version import __version__
이렇게 변경후에 모듈을 설치하면 정상적으로 사용이 가능하다.