【已解决】AttributeError: module ‘pandas‘ has no attribute ‘Series‘

问题描述:pandas是用于数据处理和分析的包,本文是基于笔者在进行模型训练时遇到的一个问题,于是随笔记录下了从发现问题到解决问题的整个过程。

【已解决】AttributeError: module ‘pandas‘ has no attribute ‘Series‘_第1张图片

当遇到AttributeError: module 'pandas' has no attribute 'Series'这样的错误,首先我是在python命令行中进行测试Series属性是否可用。

>>>python
>>>import pandas as pd
>>>pd.Series

【已解决】AttributeError: module ‘pandas‘ has no attribute ‘Series‘_第2张图片

 

如果说在命令行中不能用,那么说明自己的pandas包安装是有问题的,于是进行卸载重装,最简单的方式采用pip便可以实现操作。如下图

pip uninstall pandas

【已解决】AttributeError: module ‘pandas‘ has no attribute ‘Series‘_第3张图片

 

 重新安装pandas

python -m pip install -U pandas --prefer-binary -i https://pypi.tuna.tsinghua.edu.cn/simple

【已解决】AttributeError: module ‘pandas‘ has no attribute ‘Series‘_第4张图片

 再次测试:

>>>python
>>>import pandas as pd
>>>pd.Series

【已解决】AttributeError: module ‘pandas‘ has no attribute ‘Series‘_第5张图片

 问题解决啦!

 

你可能感兴趣的:(机器学习经验总结,pandas,python,数据分析)