pandas 需要 xlrd 1.1.0 版本,但 styleframe 应该有 xlrd 1.0.0。如何正确设置它,以便我同时需要 styleframe 和 pandas?
pandas require version xlrd 1.1.0 but styleframe should have xlrd 1.0.0. How to set it correctly, so that I need both styleframe and pandas?
### I tried to read excel, pandas.read_excel("excel_file.xlsx") where I got the error saying "ImportError: Pandas requires version '1.1.0' or newer of 'xlrd' (version '1.0.0' currently installed)" ###
正在重新安装 xlrd。
检查样式框架依赖树后,
--- 样式框架:
StyleFrame==2.0.4
- 颜色[要求:>=0.1.5,安装:0.1.5]
- jsonschema [需要:任何,已安装:3.0.1]
- 属性[要求:>=17.4.0,安装:18.1.0]
- pyrsistent [要求:>=0.14.0,已安装:0.15.3]
- 六个[要求:任意,已安装:1.11.0]
- setuptools [需要:任何,已安装:40.6.2]
- 六个[要求:>=1.11.0,安装:1.11.0]
- openpyxl [要求:>=2.5,安装:2.6.2]
- et-xmlfile [需要:任何,已安装:1.0.1]
- jdcal [要求:任何,已安装:1.4.1]
- pandas [要求:>=0.23.2,已安装:0.25.0]
- numpy [要求:>=1.13.3,安装:1.16.4]
- python-dateutil [要求:>=2.6.1,安装:2.8.0]
- 六个[要求:>=1.5,安装:1.11.0]
- pytz [要求:>=2017.2,安装:2019.1]
- xlrd [要求:==1.0.0,安装:1.2.0]
从样式框架文档中,我可以看到 xlrd==1.0.0:
(install_requires=['openpyxl>=2.5', 'xlrd==1.0.0', 'colour>=0.1.5', 'jsonschema'],)
临时解决方法:先安装 StyleFrame,然后升级 xlrd 和 pandas。
下个版本修复
### I tried to read excel, pandas.read_excel("excel_file.xlsx") where I got the error saying "ImportError: Pandas requires version '1.1.0' or newer of 'xlrd' (version '1.0.0' currently installed)" ###
正在重新安装 xlrd。
检查样式框架依赖树后, --- 样式框架: StyleFrame==2.0.4
- 颜色[要求:>=0.1.5,安装:0.1.5]
- jsonschema [需要:任何,已安装:3.0.1]
- 属性[要求:>=17.4.0,安装:18.1.0]
- pyrsistent [要求:>=0.14.0,已安装:0.15.3]
- 六个[要求:任意,已安装:1.11.0]
- setuptools [需要:任何,已安装:40.6.2]
- 六个[要求:>=1.11.0,安装:1.11.0]
- openpyxl [要求:>=2.5,安装:2.6.2]
- et-xmlfile [需要:任何,已安装:1.0.1]
- jdcal [要求:任何,已安装:1.4.1]
- pandas [要求:>=0.23.2,已安装:0.25.0]
- numpy [要求:>=1.13.3,安装:1.16.4]
- python-dateutil [要求:>=2.6.1,安装:2.8.0]
- 六个[要求:>=1.5,安装:1.11.0]
- pytz [要求:>=2017.2,安装:2019.1]
- xlrd [要求:==1.0.0,安装:1.2.0]
从样式框架文档中,我可以看到 xlrd==1.0.0: (install_requires=['openpyxl>=2.5', 'xlrd==1.0.0', 'colour>=0.1.5', 'jsonschema'],)
临时解决方法:先安装 StyleFrame,然后升级 xlrd 和 pandas。
下个版本修复