错误:ModuleNotFoundError:没有名为“ termios”的模块

时间:2020-08-13 11:22:05

标签: python

from google.colab import drive
drive.mount('/content/gdrive') 

这是我编写的代码

1 个答案:

答案 0 :(得分:0)

您是否偶然在Windows上?如果是这样,则您需要使用基于Unix的系统,因为根据this source

,Termios仅在Unix上而不是Windows上

由于termios是一个内置的python库,因此,如果您使用的是基于Unix的系统,则只需:

import termios

如果这不起作用,则您的python安装可能已损坏,您将需要重新安装Python