Hi! I am using guidata (http://code.google.com/p/guidata/) and I can create the *.exe file but I get an error when I running the *.exe file.
My code is the example of http://code.google.com/p/guidata/: import guidata *_app =* guidata.qapplication() # not required if a QApplication has already been created import guidata.dataset.datatypes as dt import guidata.dataset.dataitems as di class Processing(dt.DataSet): """Example""" a = di.FloatItem("Parameter #1", default=2.3) b = di.IntItem("Parameter #2", min=0, max=10, default=5) type = di.ChoiceItem("Processing algorithm", ("type 1", "type 2", "type 3")) param = Processing() param.edit() Then I run: python pyinstaller -F testguidata.py I get my testguidata.exe but I get an error when I running the file Any idea? Many thanks! -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
