ImportError: cannot import name 'copy' from 'openpyxl.styles
时间: 2024-02-29 22:48:19 浏览: 313
ImportError:无法从“django.utils.encoding”导入名称“force text”Python 错误
这个错误通常是由于openpyxl版本不兼容导致的。解决方法是升级openpyxl版本或者降级到兼容的版本。你可以尝试以下两种方法:
1.升级openpyxl版本
```shell
pip install openpyxl --upgrade
```
2.降级openpyxl版本
```shell
pip install openpyxl==2.5.0
```
阅读全文