使用jupyter notebook时导入文件时出错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jupyter notebook时导入文件时出错相关的知识,希望对你有一定的参考价值。
最近我一直在使用jupyter
笔记本,并试图用熊猫读取excel文件,它给我以下错误:
FileNotFoundError:[Errno 2]没有这样的文件或目录
但它工作正常,当我在Spyder
上运行它时,使用完全相同的代码行读取文件。
关于如何解决这个问题的任何建议?
答案
好像是安装错误,这样做,
For Python 2
pip install --upgrade --force-reinstall --no-cache-dir jupyter
For Python 3
pip3 install --upgrade --force-reinstall --no-cache-dir jupyter
另一答案
我过去也遇到过类似的问题。按照本文中的建议更改了Jupyter启动文件夹:how to change jupyter start folder?,只需将excel文件放在此文件夹中并加载它们就没有必要写入路径了。这就够了:
xl_file = pd.ExcelFile('myFile.xls')
另一答案
读取文件时提供完整路径。它正在spyder中运行,因为当你的jupyter在不同的文件夹中时,excel文件和spyder在同一个文件夹中。所以它无法读取文件。
df = pd.read_csv(full_path)
以上是关于使用jupyter notebook时导入文件时出错的主要内容,如果未能解决你的问题,请参考以下文章
在 Jupyter Notebook 中导入 numpy 时出现问题
Elasticsearch:使用 Jupyter Notebook 创建 Python 应用导入 CSV 文件
Elasticsearch:使用 Jupyter Notebook 创建 Python 应用导入 CSV 文件