jupyter FileNotFoundError: [Errno 2] No such file or directory:
时间: 2023-11-12 15:00:52 浏览: 368
errno(3) - Linux manual page.pdf
这个错误通常是因为你尝试打开一个不存在的文件导致的。请确保你输入的文件路径是正确的,并且文件确实存在于该路径下。
如果你使用的是 Jupyter Notebook,可以使用以下代码来检查当前工作目录和文件是否存在:
```python
import os
# 获取当前工作目录
cwd = os.getcwd()
print("Current working directory:", cwd)
# 检查文件是否存在
file_path = "path/to/your/file"
if os.path.exists(file_path):
print("File exists!")
else:
print("File not found.")
```
阅读全文