easygui

easygui buttonbox crashes becase of default font from Tkinter

easygui buttonbox crashes becase of default font from Tkinter Question: I’m using easygui in a Python app and then generate an .exe with PyInstaller. Everything works fine in my computer, but my colleague get this weird error when they try to run the app : Traceback (most recent call last): File "easyguiboxesbutton_box.py", line 95, in …

Total answers: 1

ModuleNotFoundError: No module named 'global_state'

ModuleNotFoundError: No module named 'global_state' Question: For the small project I’m working on, I have to use the package easygui with import easygui. I believe I installed it correctly, but now I’m getting the error: ModuleNotFoundError: No module named ‘global_state’ From my understanding, it has something to do with easygui. I tried uninstalling and reinstalling …

Total answers: 2

formatting content in easygui message box and adding scrollbar

formatting content in easygui message box and adding scrollbar Question: After this code runs, I would like the results to appear in a message box as separate lines of text, and not as tuples (which is what is happening now). Essentially I would like to see the results in the message box just as they …

Total answers: 1

Token error: EOF in multi-line statement

Token error: EOF in multi-line statement Question: The following code gives me this error “Token Error: EOF in multi-line statement”. What is this error? How can I fix it? import easygui import time namegui = easygui.enterbox(msg=’Enter your name:’, title=’Name query’, default=’Gian’) situationgui = easygui.enterbox(msg=’Please enter your situation:’, title=’Thought Log(Situation)’) thoughtsgui = easygui.enterbox(msg=’Please enter your thoughts:’, …

Total answers: 5