Discussion:
[Urwid] No module named termios
Alagu Madhu
2009-02-11 06:57:06 UTC
Permalink
Hi

I am using python 26 on windows XP .



D:\urwid>python setup.py install
Traceback (most recent call last):
File "setup.py", line 31, in <module>
import urwid
File "D:\urwid\urwid\__init__.py", line 51, in <module>
from graphics import *
File "D:\urwid\urwid\graphics.py", line 30, in <module>
from display_common import AttrSpec
File "D:\urwid\urwid\display_common.py", line 22, in <module>
import termios
ImportError: No module named termios




Thanks


Madhu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.excess.org/pipermail/urwid/attachments/20090211/a4538d66/attachment.htm
Ian Ward
2009-02-11 07:29:25 UTC
Permalink
Post by Alagu Madhu
Hi
I am using python 26 on windows XP .
...
Post by Alagu Madhu
ImportError: No module named termios
http://docs.python.org/library/termios.html#module-termios
---
Platforms: Unix

Windows doesn't have a POSIX terminal. You can run Urwid under Windows
using Cygwin using the included terminal (poor) or with xterm (excellent).

It would be nice to have a windows_display module one day, but for now
you need to run Urwid remotely on a Linux/BSD/MacOS system or by using
Cygwin.

Regards,
Ian

Loading...