FileNotFoundError: [Errno 2] No such file or directory: 'factiva_large_df.csv'
时间: 2023-10-20 19:10:06 浏览: 72
Laravel执行migrate命令提示:No such file or directory的解决方法
这个错误通常是因为文件路径不正确或文件不存在导致的。请检查文件路径是否正确,并确保文件实际存在于指定路径中。
如果文件确实存在,您可以尝试使用绝对路径来打开文件,例如:
```python
import pandas as pd
df = pd.read_csv('/path/to/factiva_large_df.csv')
```
如果您正在使用相对路径,请确保它相对于当前工作目录。您可以使用以下代码检查当前工作目录:
```python
import os
print(os.getcwd())
```
如果当前工作目录不是您期望的目录,请使用 `os.chdir()` 函数更改工作目录。
阅读全文