简体   繁体   中英

Can the pudb debugger be used on windows?

Is it possible to us the pudb python debugger on Windows? If yes, how do you get it installed and working?

When I try and install it using ez_setup , python ez_setup.py .\\path\\to\\pudb-unpacked , it fails with ImportError: No module named termios , a module which appears to be for unix only.

I'm using Windows 7, x64.

It appears the answer is No, pudb can't be used in Windows at present.

The underlying problem is that pudb relies on urwid, which expects a unix-like environment . There is a message in 2006 indicating 3 methods of using urwid on windows , namely: cygwin, cursesw, and pdcurses. So it there is an avenue of exploration for an adventurer.

I've got pudb running under Cygwin on windows. I installed it with pip

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM