colab研究python无法连接到gdrive

Posted

技术标签:

【中文标题】colab研究python无法连接到gdrive【英文标题】:colab research python can not connect to the gdrive 【发布时间】:2019-06-11 14:13:48 【问题描述】:

我试图在我的 colab 研究 ipython 中连接到 gdrive。但是今天早上我写这段代码的时候,

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

它给我一个错误代码;

ValueError: Mountpoint must be in a directory that exists 

我无法连接到 gdrive,可能是什么原因? 谢谢

【问题讨论】:

我在这里回答了同样的问题***.com/a/54232739/2826013 【参考方案1】:

实际的解决方法不是添加 force_remount=True,而是将 arg 中的尾随 / 删除到 drive.mount()

【讨论】:

【参考方案2】:

其实我得到了答案。 取而代之

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

下面需要输入

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

谢谢

【讨论】:

以上是关于colab研究python无法连接到gdrive的主要内容,如果未能解决你的问题,请参考以下文章

Google驱动器与COLAB断开连接

Google Colab:从本地上传 Pytorch 模型后“无法连接到运行时”

将 Colab 连接到付费 TPU

使用 GPU 连接到本地运行时 google colab 需要 tensorflow-gpu?

google colab /bin/bash: 'gdrive/My Drive/path/myfile : 权限被拒绝

Colab - 连接到自定义 GCP 虚拟机