无法导入termios软件包

时间:2018-08-28 16:57:16

标签: termios python-3.7

我正在使用Python 3.7,我需要import termios来屏蔽密码输入,但是我无法在https://pypi.org/上找到它

import sys, tty, termios

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    import sys, tty, termios
  File "C:\Python37\lib\tty.py", line 5, in <module>
    from termios import *
ModuleNotFoundError: No module named 'termios'

1 个答案:

答案 0 :(得分:0)

https://docs.python.org/3/library/tty.html说:

  

由于它需要termios模块,因此只能在Unix上使用。

即Windows没有termios。