Google colab 找不到目录(我的云端硬盘)
Google colab Could not find directory (My Drive)
当我想在 colab 中使用驱动器中的文件时出错
from google.colab import drive
drive.mount('/content/drive')
和他们
INPUT_DIRECTORY='/content/drive/My Drive/deepcumbia/data/xml'
错误:
Could not find directory /content/drive/My/
逃脱space。
INPUT_DIRECTORY='/content/drive/My\ Drive/deepcumbia/data/xml'
这是为了添加另一种对我有用的方法,即仔细检查 colab 中的实际目录路径。
在调试同一个问题时,我注意到 Google Colab 采用 Google Drive 默认目录有点不同。
例如。在 Google Colab 中,目录如下所示,“MyDrive”一词中没有 space:
但是当我浏览到 Google 驱动器时,注意到“我的驱动器”中有一个 space:
因此,对于我的情况,我从:
sth= pd.read_csv('/content/drive/My Drive/Colab Notebooks/Datasets/xyz.csv', index_col='abc')
到
sth= pd.read_csv('/content/drive/MyDrive/Colab Notebooks/Datasets/xyz.csv', index_col='abc')
然后成功了。
我以前也遇到过类似的问题。当 link 或路径中有 space 时会出现此问题。
因此,这是 通用解决方案:在 space.
之前添加一个 \
因此,如果是 dir = 'My Drive'
,请将其更改为 dir = 'My\ Drive'
。
它会一直有效。
此外,这是您问题的解决方案:
INPUT_DIRECTORY='/content/drive/My\ Drive/deepcumbia/data/xml'
当我想在 colab 中使用驱动器中的文件时出错
from google.colab import drive
drive.mount('/content/drive')
和他们
INPUT_DIRECTORY='/content/drive/My Drive/deepcumbia/data/xml'
错误:
Could not find directory /content/drive/My/
逃脱space。
INPUT_DIRECTORY='/content/drive/My\ Drive/deepcumbia/data/xml'
这是为了添加另一种对我有用的方法,即仔细检查 colab 中的实际目录路径。
在调试同一个问题时,我注意到 Google Colab 采用 Google Drive 默认目录有点不同。 例如。在 Google Colab 中,目录如下所示,“MyDrive”一词中没有 space:
但是当我浏览到 Google 驱动器时,注意到“我的驱动器”中有一个 space:
因此,对于我的情况,我从:
sth= pd.read_csv('/content/drive/My Drive/Colab Notebooks/Datasets/xyz.csv', index_col='abc')
到
sth= pd.read_csv('/content/drive/MyDrive/Colab Notebooks/Datasets/xyz.csv', index_col='abc')
然后成功了。
我以前也遇到过类似的问题。当 link 或路径中有 space 时会出现此问题。
因此,这是 通用解决方案:在 space.
之前添加一个 \因此,如果是 dir = 'My Drive'
,请将其更改为 dir = 'My\ Drive'
。
它会一直有效。
此外,这是您问题的解决方案:
INPUT_DIRECTORY='/content/drive/My\ Drive/deepcumbia/data/xml'