Pandas库报错:ImportError: cannot import name ‘nosetester‘解决方案

今儿个使用pandas时报了导入错误“ImportError: cannot import name ‘nosetester’”,查了一下资料发现可能是pandas库兼容性出了问题,好吧,重装一下就ok。
Pandas库报错:ImportError: cannot import name ‘nosetester‘解决方案_第1张图片
当然,操作方法也很简单。先查一下是否安装了pandas.发现版本号为0.18.1,可能有点老了

 pip show pandas

Pandas库报错:ImportError: cannot import name ‘nosetester‘解决方案_第2张图片
给他更新一下,先卸载原版本

pip uninstall pandas

Pandas库报错:ImportError: cannot import name ‘nosetester‘解决方案_第3张图片
装新版本,这里面用了国内镜像源

 pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

Pandas库报错:ImportError: cannot import name ‘nosetester‘解决方案_第4张图片
嗯,很顺利,测试一下,么有问题,大功告成!

在这里插入图片描述

你可能感兴趣的:(数据分析)