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

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

    Just go to "manage section" , then terminate your current section, and try to mount again with:

    from google.colab import drive
    drive.mount('/content/drive', force_remount=True) 
    

    It worked here.

提交回复
热议问题