Failed to execute script'老板薪酬肝申器'due to unhandled exception:No module named 'openpyxl.cell._writer'
时间: 2024-01-14 21:04:12 浏览: 136
使用Python安装openpyxl的时候报错
As an AI language model, I cannot access your local environment. However, based on the error message provided, it seems like there is an issue with the openpyxl module. The error message suggests that the '_writer' module within the 'openpyxl.cell' package is missing or not installed correctly.
To resolve this issue, you can try reinstalling the openpyxl module by running the following command in your terminal or command prompt:
```
pip install --upgrade openpyxl
```
If the issue persists, you can try upgrading pip to the latest version by running the following command:
```
pip install --upgrade pip
```
If none of these solutions work, you may need to provide more information about your code and environment, or seek assistance from a developer or technical support.
阅读全文