问题描述:pandas是用于数据处理和分析的包,本文是基于笔者在进行模型训练时遇到的一个问题,于是随笔记录下了从发现问题到解决问题的整个过程。
当遇到AttributeError: module 'pandas' has no attribute 'Series'这样的错误,首先我是在python命令行中进行测试Series属性是否可用。
>>>python
>>>import pandas as pd
>>>pd.Series
文章来源地址https://www.toymoban.com/news/detail-509151.html
如果说在命令行中不能用,那么说明自己的pandas包安装是有问题的,于是进行卸载重装,最简单的方式采用pip便可以实现操作。如下图
pip uninstall pandas
重新安装pandas
python -m pip install -U pandas --prefer-binary -i https://pypi.tuna.tsinghua.edu.cn/simple
再次测试:
>>>python
>>>import pandas as pd
>>>pd.Series
问题解决啦!文章来源:https://www.toymoban.com/news/detail-509151.html
到了这里,关于【已解决】AttributeError: module ‘pandas‘ has no attribute ‘Series‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!