之前执行 colab好好的,突然就报错了
OSError: [Errno 107] Transport endpoint is not connected
解决方案:
执行一行代码
卸载文件系统
!fusermount -u drive
然后重新mount
from google.colab import drive
drive.mount('/content/drive')
解决Colab中Transportendpointisnotconnected错误
在使用GoogleColab时遇到OSError107,表示传输端点未连接。为了解决这个问题,用户可以执行fusermount-udrive来卸载文件系统,然后重新使用google.colab库的drive.mount方法挂载驱动器。
之前执行 colab好好的,突然就报错了
OSError: [Errno 107] Transport endpoint is not connected
解决方案:
执行一行代码
卸载文件系统
!fusermount -u drive
然后重新mount
from google.colab import drive
drive.mount('/content/drive')
853

被折叠的 条评论
为什么被折叠?