colab OSError: [Errno 107] Transport endpoint is not connected 解决方案

之前执行 colab好好的,突然就报错了

OSError: [Errno 107] Transport endpoint is not connected

解决方案:
执行一行代码
卸载文件系统

!fusermount -u drive

然后重新mount

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

猜你喜欢

转载自blog.csdn.net/greatcoder/article/details/129870390