On Wed, Nov 28, 2018 at 4:41 PM Osman Zakir <[email protected]> wrote: > When I tried to run gm.py x64.release, I got an ImportError: No module named > termios. I then tried to do pip install termios, but that didn't work > (error: Could not find a version that satisfies the requirement termios > (from versions: ) > No matching distribution found for termios). Someone please help me out here.
termios is a core python module, i.e., it's built-in. gm.py doesn't use it directly but it does use the pty module (another built-in), which in turn uses termios. pty only works (reliably) on Linux. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
