Google Colab-ValueError: Mountpoint must be in a directory that exists

前端 未结 10 914
心在旅途
心在旅途 2021-01-03 01:02

I want to mount google drive on google Colab and I am using this command to mount the drive

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


        
10条回答
  •  心在旅途
    2021-01-03 01:26

    Run command to unmount drive first.

    !fusermount -u drive
    

    Then try run again,

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

提交回复
热议问题