ModuleNotFoundError:没有名为’pandas.core.indexes’的模块
import pickleimport pandasdbfile = open(dataset loction,'rb')df = pickle.load(dbfile)
我尝试了所有修复:
>更新了熊猫
>使用了df = pandas.read_picle(数据集位置)
尝试使用pip安装pickle但收到此错误
C:\installs\WinPython-64bit-3.6.1.0Qt5\python-3.6.1.amd64>python -m pip install pickleCollecting pickle Could not find a version that satisfIEs the requirement pickle (from versions: )No matching distribution found for pickle解决方法 有点像pickle文件是用不同版本的Pandas创建的,而你当前安装的Pandas没有pandas.core.indexes模块,这是pickle中的一些数据所需要的.
您使用的是哪个版本的熊猫?你试过升级吗?
编辑:熊猫0.19.2没有该模块:
$pip install pandas==0.23.3$python>>> import pandas.core.indexes as i>>>$pip install pandas==0.19.2$python>>> import pandas.core.indexes as iTraceback (most recent call last): file "<stdin>",line 1,in <module>ModuleNotFoundError: No module named 'pandas.core.indexes'>>>总结
以上是内存溢出为你收集整理的python-3.x – ModuleNotFoundError:没有名为’pandas.core.indexes’的模块全部内容,希望文章能够帮你解决python-3.x – ModuleNotFoundError:没有名为’pandas.core.indexes’的模块所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)