jupyter更换目录
时间: 2023-10-21 14:25:17 浏览: 97
调整Jupyter notebook的启动目录操作
5星 · 资源好评率100%
要在Jupyter中更改当前工作目录,可以使用以下代码:
```python
import os
# 获取当前工作目录
current_dir = os.getcwd()
print("当前工作目录:", current_dir)
# 更改当前工作目录
new_dir = '/path/to/new_directory'
os.chdir(new_dir)
# 验证更改后的工作目录
current_dir = os.getcwd()
print("更改后的工作目录:", current_dir)
```
在代码中,首先使用`os.getcwd()`获取当前的工作目录,并打印出来。然后使用`os.chdir()`函数将工作目录更改为指定的新目录。最后再次使用`os.getcwd()`验证更改后的工作目录是否正确。
将`/path/to/new_directory`替换为你想要更改到的实际目录路径。
阅读全文