AttributeError: module 'pandas' has no attribute 'read_excel'

data = pd.read_excel(case_file , index_col = 'time' )

报错:

Traceback (most recent call last):
  File "/Users/allin/PycharmProjects/scientific_calculation/resource_analysis/case_abnormal.py", line 9, in 
    data = pd.read_excel(case_file, 'sheet0')
AttributeError: module 'pandas' has no attribute 'read_excel'
环境用的anaconda3,python36
之前能用,突然就用不了了。更新了lib包,也不好使。重启pycharm也不行。
然后突然发现,项目里面有一个包,叫pandas,是空包。在import的时候,会优先导入项目里面的包,然后就报错了。

你可能感兴趣的:(Pandas,python,pandas)