使用pandas处理数据的时候,出现报错:TypeError: Cannot interpret ‘<attribute ‘dtype’ of ‘numpy.generic’ objects>’ as a data type

这个问题是由numpy版本引起的,也就是说你numpy的版本过低,所以我们要做的就是升级numpy。
若是还不行,那就是pandas的版本问题,再升级一下pandas就好了。升级完记得把项目重启一下。

pip install -U numpy
pip install -U pandas

若是在安装numpy和pandas的时候下载到一半终止了,或干脆下载不了,出现ReadTimeoutError,则可以换源

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U numpy
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U pandas

若是下载完成后无法安装,显示ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。那么是权限问题,用以下代码安装即可。

pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple -U numpy
pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple -U pandas

最后,安装成功后记得重启项目再运行~

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐