<div dir="ltr"><div><div><div>EasyGUI is a module for GUI programming in Python (<a href="https://sourceforge.net/projects/easygui/">https://sourceforge.net/projects/easygui/</a>).<br><br></div>This is a session on the terminal:<br><br>>  sam@lap_sam ~/repos/d-kit $ python<br>>  Python 2.7.9 (default, Mar  1 2015, 18:22:53) <br>>  [GCC 4.9.2] on linux2<br>>  Type "help", "copyright", "credits" or "license" for more information.<br>>  >>> import easygui as gui<br>>  >>> gui.ynbox(msg='Test window')<br>>  True<br>>  >>> <br><br></div>And this is the same session on the scribus python console:<br><br></div>input:<br>>  import easygui as gui
<p style="margin:0px;text-indent:0px">>  gui.ynbox(msg='Test window')</p><p style="margin:0px;text-indent:0px"><br></p><p style="margin:0px;text-indent:0px">output after <F9></p><p style="margin:0px;text-indent:0px">

</p><p style="margin:0px;text-indent:0px">>  Traceback (most recent call last):</p>
<p style="margin:0px;text-indent:0px">>      File "<console>", line 1, in <module></p>
<p style="margin:0px;text-indent:0px">>  ImportError: No module named easygui</p>
<p style="margin:0px;text-indent:0px">>  Traceback (most recent call last):</p>
<p style="margin:0px;text-indent:0px">>      File "<console>", line 1, in <module></p>
<p style="margin:0px;text-indent:0px">>  NameError: name 'gui' is not defined</p><p style="margin:0px;text-indent:0px"><br></p><p style="margin:0px;text-indent:0px">Where can it be the problem?<br></p></div>