No module named pyExcelerator
时间: 2023-10-15 09:31:15 浏览: 169
pycharm运行出现ImportError:No module named的解决方法
3星 · 编辑精心推荐
To fix the "No module named pyExcelerator" error, you can try installing the module using the following command:
```
pip install pyExcelerator
```
If you're using Python 3, you can try installing the updated version called `xlwt` instead:
```
pip install xlwt
```
After installing the module, make sure to import it in your code using `import pyExcelerator` or `import xlwt` depending on which module you installed.
阅读全文