gpt4 book ai didi

python - 将 pandas df 写入 Excel 时出现无名为 xlsxwriter 的模块错误

转载 作者:行者123 更新时间:2023-12-02 08:15:19 25 4
gpt4 key购买 nike

在编写将数据帧写入Excel的pandas代码时。

import pandas as pd

df = pd.DataFrame({'Data': [10, 20, 30, 20, 15, 30, 45]})
writer = pd.ExcelWriter('pandas_simple.xlsx', engine='xlsxwriter')
df.to_excel(writer, sheet_name='Sheet1')
writer.save()

我收到此错误:

File "/usr/local/lib64/python2.7/site-packages/pandas/io/excel.py", line 1934, in __init__
import xlsxwriter
ImportError: No module named xlsxwriter

我需要在 python 文件中显式导入 xlsxwriter 模块吗?

最佳答案

通过运行手动安装缺少的模块xlsxwriter

pip install xlsxwriter

模块正确安装后,无需手动导入,它将作为pandas的依赖项导入。

<小时/>

备注:总结了所讨论问题下面给出的评论的答案 herehere

关于python - 将 pandas df 写入 Excel 时出现无名为 xlsxwriter 的模块错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55280131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com