Issue
I cannot use any bash commands in Google Colab
script, it throws me: Transport endpoint is not connected.
The problem only occurs in the mounted gdrive (I am using google-drive-ocamlfuse
)
For instance, if I type:
>> cd drive/cnn/
[Errno 107] Transport endpoint is not connected: 'drive/cnn/'
>> ls
ls: cannot access '.': Transport endpoint is not connected
I have tried restarting the runtime but no luck.
Has anyone encountered this?
Solution
Silly me, I just simply had to unmount and mount the drive again:
!fusermount -u drive
!google-drive-ocamlfuse drive
Answered By - Laurynas Tamulevičius Answer Checked By - Timothy Miller (WPSolving Admin)