You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My issue is py_cui is not running in my terminal cmd. I tried the hello_py_cui example it just doesn't display as expected
I run the example in the terminal python experiments/cui.py
but it yields no display as it should in the terminal
To Reproduce
Steps to reproduce the behavior:
Install py_cui lib
load up hello world example
"""The most basic possible use case for py_cui@author: Jakub Wlodek@created: 12-Aug-2019"""# Import the libimportpy_cui# create the CUI object. Will have a 3 by 3 grid with indexes from 0,0 to 2,2root=py_cui.PyCUI(3, 3)
# Add a label to the center of the CUI in the 1,1 grid positionroot.add_label("Hello py_cui!!!", 1, 1)
# Start/Render the CUIroot.start()
execute code
python <source_file>
produces no display
Expected behavior
a cui display with the label "Hello py_cui!!!"