我无法在Google Colab
脚本中使用任何bash命令,它会抛出我:Transport endpoint is not connected.
问题只出现在已安装的gdrive中(我正在使用google-drive-ocamlfuse
)
例如,如果我输入:
>> cd drive/cnn/
[Errno 107] Transport endpoint is not connected: 'drive/cnn/'
>> ls
ls: cannot access '.': Transport endpoint is not connected
我尝试重新启动运行时但没有运气。
有没有人遇到过这个?
答案 0 :(得分:3)
愚蠢的我,我只需要卸下并重新安装驱动器:
!fusermount -u drive
!google-drive-ocamlfuse drive
答案 1 :(得分:2)
尝试恢复出厂设置运行期
答案 2 :(得分:2)
我所做的是运行此代码>
import pandas as pd
from google.colab import drive
drive.mount('/content/gdrive', force_remount=True)
然后我看到了目录,因为必须更改路径
对我有用!
答案 3 :(得分:2)
在菜单栏上转到“运行时”,然后单击“重新启动运行时”选项。
或者直接使用快捷方式按CTRL + M
答案 4 :(得分:1)
或者:通过转到:运行时->管理会话来终止会话,然后单击终止会话。然后,您可以重新安装驱动器。这样可以解决问题。