Traceback (most recent call last): File "c:\Users\86135\Desktop\第二次作业-2020112266李思远\project.py", line 6, in <module> data=xlrd.open_workbook('data.xlsx') File "D:\Anaconda\envs\visual\lib\site-packages\xlrd\__init__.py", line 170, in open_workbook raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+'; not supported') xlrd.biffh.XLRDError: Excel xlsx file; not supported
时间: 2023-07-21 14:22:00 浏览: 105
这个错误提示是因为 `xlrd` 库不支持读取 `.xlsx` 格式的 Excel 文件。`xlrd` 只能处理 `.xls` 格式的 Excel 文件。
如果您要读取 `.xlsx` 格式的 Excel 文件,可以使用 `openpyxl` 库。您可以使用以下命令安装 `openpyxl`:
```
pip install openpyxl
```
然后修改您的代码如下:
```
import openpyxl
data = openpyxl.load_workbook('data.xlsx')
sheet = data.active
```
这样就可以读取 `.xlsx` 文件中的数据了。
相关问题
Traceback (most recent call last): File "C:\Users\31225\Desktop\MVSNet_pytorch-master\train.py", line 16, in <module> from utils import * File "C:\Users\31225\Desktop\MVSNet_pytorch-master\utils.py", line 2, in <module> import torchvision.util
这个错误是因为在你的代码中,`utils.py`文件中尝试导入了`torchvision.util`,但是该模块在`torchvision`库中不存在。你需要检查你的代码,并确认你要导入的模块的名称是否正确。如果你想使用`torchvision`库,请确保已经正确安装该库。你可以尝试通过在终端中运行以下命令来安装它:
```
pip install torchvision
```
如果你已经安装了该库,请检查你的安装是否正确,并且版本是否与你的代码兼容。
Traceback (most recent call last): File "C:\Users\lenovo\Desktop\yolov5-7.0\yolov5-7.0\detect.py", line 35, in <module>
There was an error in the detect.py file on line 35. Without more information, it is difficult to determine the exact cause of the error. Please provide more context or the full error message for further assistance.
阅读全文