How can I get the Python module termios to work in Cygwin? -
i want run urwid in windows downloaded , installed cygwin (default packages only). tried hello world example:
import urwid txt = urwid.text(u"hello world") fill = urwid.filler(txt, 'top') loop = urwid.mainloop(fill) loop.run()
but complains termios
:
$ python test.py traceback (most recent call last): file "test.py", line 1, in <module> import urwid file "c:\python27\lib\site-packages\urwid-1.1.1-py2.7-win-amd64.egg\urwid\__init__.py", line 40, in <module> urwid.graphics import (bigtext, linebox, bargraphmeta, bargrapherror, file "c:\python27\lib\site-packages\urwid-1.1.1-py2.7-win-amd64.egg\urwid\graphics.py", line 30, in <module> urwid.display_common import attrspec file "c:\python27\lib\site-packages\urwid-1.1.1-py2.7-win-amd64.egg\urwid\display_common.py", line 23, in <module> import termios importerror: no module named termios
i went installer , installed packages matching term
search term, still same error.
please, cygwin deities out there, assist feeble noob in sorting annoying issue out?
edit: running python 2.7.2 on windows 7 if matters.
after installing actual python
packages , libmpfr4
missing worked fine...
Comments
Post a Comment