前提・実現したいこと
PYTHON3 アナコンダでJUPYTERLABを使い
コードを入力してましたら
EXCELのファイル 'sample.xlsx'が読み込めないような
エラーが出てしまい先に進めません
発生している問題・エラーメッセージ
FlieNotFoundError Traceback (most recent call last)
<ipython-input-19-87b0fbab9084> in <module>
----> 1 df_order = pd.read_excel(import_file_path,sheet_name = excel_sheet_name)
~\anaconda3\lib\site-packages\pandas\util_decorators.py in wrapper(*args, **kwargs)
294 )
295 warnings.warn(msg, FutureWarning, stacklevel=stacklevel)
--> 296 return func(*args, **kwargs)
297
298 return wrapper
~\anaconda3\lib\site-packages\pandas\io\excel_base.py in read_excel(io, sheet_name, header, names, index_col, usecols, squeeze, dtype, engine, converters, true_values, false_values, skiprows, nrows, na_values, keep_default_na, na_filter, verbose, parse_dates, date_parser, thousands, comment, skipfooter, convert_float, mangle_dupe_cols)
302
303 if not isinstance(io, ExcelFile):
--> 304 io = ExcelFile(io, engine=engine)
305 elif engine and engine != io.engine:
306 raise ValueError(
~\anaconda3\lib\site-packages\pandas\io\excel_base.py in init(self, path_or_buffer, engine)
865 self._io = stringify_path(path_or_buffer)
866
--> 867 self._reader = self._enginesengine
868
869 def fspath(self):
~\anaconda3\lib\site-packages\pandas\io\excel_xlrd.py in init(self, filepath_or_buffer)
20 err_msg = "Install xlrd >= 1.0.0 for Excel support"
21 import_optional_dependency("xlrd", extra=err_msg)
---> 22 super().init(filepath_or_buffer)
23
24 @property
~\anaconda3\lib\site-packages\pandas\io\excel_base.py in init(self, filepath_or_buffer)
351 self.book = self.load_workbook(filepath_or_buffer)
352 elif isinstance(filepath_or_buffer, str):
--> 353 self.book = self.load_workbook(filepath_or_buffer)
354 elif isinstance(filepath_or_buffer, bytes):
355 self.book = self.load_workbook(BytesIO(filepath_or_buffer))
~\anaconda3\lib\site-packages\pandas\io\excel_xlrd.py in load_workbook(self, filepath_or_buffer)
35 return open_workbook(file_contents=data)
36 else:
---> 37 return open_workbook(filepath_or_buffer)
38
39 @property
~\anaconda3\lib\site-packages\xlrd_init_.py in open_workbook(filename, logfile, verbosity, use_mmap, file_contents, encoding_override, formatting_info, on_demand, ragged_rows)
109 else:
110 filename = os.path.expanduser(filename)
--> 111 with open(filename, "rb") as f:
112 peek = f.read(peeksz)
113 if peek == b"PK\x03\x04": # a ZIP file
FileNotFoundError: [Errno 2] No such file or directory: 'C:\Users\zaxra\OneDrive\デスクトップ\KINOCODE\sample.xlsx'
該当のソースコード
PYTHON3
1import openpyxl 2import pandas as pd 3import glob 4 5import_file_path = 'C:\Users\zaxra\OneDrive\デスクトップ\KINOCODE\sample.xlsx' 6excel_sheet_name = '発注管理表' 7export_file_path = 'C:\Users\zaxra\OneDrive\デスクトップ\KINOCODE\output' 8 9 10 11 12 13'C:\Users\zaxra\OneDrive\デスクトップ\KINOCODE\sample.xlsx' #EXCELファイルがある場所です 14 15 16 17df_order = pd.read_excel(import_file_path,sheet_name = excel_sheet_name) 18 19******************************************************************* 20環境は 21 22C:\Users\zaxra\anaconda3 #アナコンダ最初の設定 23 24platform : win-64 25user-agent : conda/4.9.2 requests/2.24.0 CPython/3.8.3 Windows/10 26 27です 28初心者なものでよろしくお願いいたします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/12 14:15
2020/12/12 15:15
2020/12/12 20:52
2020/12/12 21:37
2020/12/12 21:43
2020/12/13 12:05