如何以正确的方式更改我的工作目录?
How do I change my working directory in a proper manner?
我在 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'
我做错了什么?
您需要通过托管jupyter笔记本服务器连接到本地运行时,然后输入端口号,然后您才能成功连接,如果您连接到托管运行时,您只能连接到google 挂载驱动
可以在此处找到更多信息-
您需要使用 /
而不是 \
import os
os.chdir('C:/')
还要检查路径是否正确,因为在您的示例中我看到 chdir(r'C:/')
而不是 chdir('C:/')
我在 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'
我做错了什么?
您需要通过托管jupyter笔记本服务器连接到本地运行时,然后输入端口号,然后您才能成功连接,如果您连接到托管运行时,您只能连接到google 挂载驱动
可以在此处找到更多信息-
您需要使用 /
而不是 \
import os
os.chdir('C:/')
还要检查路径是否正确,因为在您的示例中我看到 chdir(r'C:/')
而不是 chdir('C:/')