[x] Gooey Version - 1.2.0 - Latest (just installed it via pip and cloned the repo)
Thorough description of the problem
Expected Behavior: Gooey application runs without any errors.
Actual Behavior: Encountering the error ModuleNotFoundError: No module named 'rewx' when trying to run Gooey applications and any file from the examples repository of Gooey.
Minimal code example
'''
A Gooey example showing use of richtext display in the console pannel.
'''
from gooey import Gooey, GooeyParser
from colored import stylize, attr, fg
@Gooey(richtext_controls=True, auto_start=True)
def main():
parser = GooeyParser(description='Just display the console')
parser.parse_args()
print(stylize("This is bold.", attr("bold")))
print(stylize("This is underlined.", attr("underlined")))
print(stylize("This is green.", fg("green")))
print(stylize("This is red.", fg("red")))
print(stylize("This is blue and bold.", fg("blue") + attr("bold")))
if __name__ == '__main__':
main()
Thorough description of the problem
ModuleNotFoundError: No module named 'rewx'
when trying to run Gooey applications and any file from the examples repository of Gooey.Minimal code example