-1

我在 Google Colab 工作,我正在尝试将工作目录更改为我的桌面(桌面 = 荷兰语中的 Bureaublad,这就是为什么你在我的路径中看到“bureaublad”的原因)。但是,更改工作目录不断给我这样的目录不存在的错误。我只是复制了路径,所以一切都应该存在!在这里查看我的代码:

代码:

import os
print(os.getcwd())
os.listdir()

输出:

/content
['.config', 'sample_data']

代码:

os.chdir(r'C:\Users\emile\OneDrive\Bureaublad\Completed Communications Transcriptions')

输出:

---------------------------------------------------------------------------
FileNotFoundError                         Traceback (most recent call last)
<ipython-input-29-c4d97f3ec347> in <module>()
----> 1 os.chdir(r'C:\Users\emile\OneDrive\Bureaublad\Completed Communications Transcriptions')

FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\emile\\OneDrive\\Bureaublad\\Completed Communications Transcriptions'

我做错什么了?

4

2 回答 2

0

您需要使用/而不是\

import os
os.chdir('C:/')

Also check that the path is correct because in your example I see chdir(r'C:/') instead of chdir('C:/')

于 2020-11-10T13:50:18.243 回答
-1

您需要通过托管 jupyter notebook 服务器连接到本地运行时,然后输入端口号,然后您可以成功连接,如果您连接到托管运行时,您只能通过安装它来连接到谷歌驱动器。

可以在此处找到更多信息 -您可以在本地计算机上运行 Google Colab 吗?

于 2020-11-10T13:49:55.520 回答