ImportError: Pandas requires version '2.0.1' or newer of 'xlrd' (version '1.2.0' currently installed).
解决方法(1):修改底层代码(D:\python\lib\site-packages\pandas\compat\_optional.py),注释异常抛出。(不推荐,可能会影响其他报错)
解决方法(2):修改xlrd支持版本(推荐)
"xlrd": "2.0.1" --》 "xlrd": "1.2.0"