環境:
Windows10 x64
Python 3.9.5
表題の通りなのですが、
Pyinstallerでコンパイルした実行ファイルでのみ発生する現象です。
python
1# read_csv ver. 2df = pd.read_csv(target_file, header=0, dtype=object, encoding='cp932', engine='python')
ParserError: Error tokenizing data. C error: Expected 165 fields in line 806, saw 167
csvモジュールでをlistに読み込んでDataFrameに変換しても同じでした。
python
1# list > dataframe ver. 2with open(target_file, 'r', encoding='cp932', newline='') as csv_file: 3 lst = csv.reader(csv_file, delimiter=',', quotechar='"') 4 df = pd.DataFrame(lst, dtype=object)
何か回避方法はありますか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。