modulenotfounderror: no module named 'openpyxl'
时间: 2023-04-28 18:05:52 浏览: 127
使用Python安装openpyxl的时候报错
"modulenotfounderror: no module named openpyxl" 这个错误提示表明你当前的程序运行环境中没有安装 openpyxl 这个模块,或者程序无法找到这个模块。要解决这个问题,你可以在你的程序运行环境中安装 openpyxl 模块,使用 pip 来安装:
```
pip install openpyxl
```
如果你是在虚拟环境里安装,请在虚拟环境的命令行下运行上面的命令。
这个库能读写excel .xlsx file. If you want to read .xls file, please install 'xlrd' library
阅读全文