Skip to content Skip to sidebar Skip to footer

Get_version() Pyinstaller Syntax Error

I am running the latest version of python (3.3.2 32bit Intel win32) and have installed PyInstaller to compile my *.py files to *.exe executables. I compile my files via the Windows

Solution 1:

According to the pyinstaller github page and official site Python 3 is not yet supported.

Also see the trac issue relevant to your error and the issue on supporting Python 3.

Solution 2:

This particular error is because print is a function in Python3, so trying to use it as a statement is a SyntaxError

Post a Comment for "Get_version() Pyinstaller Syntax Error"