我已经将pyexcel作为pe导入,并且我尝试在xls文件上运行get_array和iget_records,并且我得到了一个奇怪的错误,我无法找到很多文档。错误:" OSError:找不到适合xls的库。"
当我在Test.csv上运行这些命令时,我没有遇到任何问题。但是我需要它来处理xls文件,因为我处理非英语字符,我知道这些字符不会出现在csv文件中。
my_array = pe.get_array(file_name="Test.xls")
print(my_array)
分开,
records = pe.iget_records(file_name="/Tests/Test.xls")
for record in records:
print(record['alpha'], record['beta'], record['charlie'])
想法,有人吗?
python 3.5.2; Windows 7 64位
答案 0 :(得分:1)
要解决此错误,您需要安装pyexcel-xls
。随着pip:
pip install pyexcel-xls