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

前端 未结 10 895
心在旅途
心在旅途 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:28

    Simply use:

    from google.colab import drive
    drive.mount("/content/gdrive")
    

    instead of:

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

提交回复
热议问题