TypeError: Cannot interpret ‘<attribute ‘dtype‘ of ‘numpy.generic‘ objects>‘ as a data type 解决方案
使用pandas处理数据的时候,出现报错:TypeError: Cannot interpret ‘<attribute ‘dtype’ of ‘numpy.generic’ objects>’ as a data type这个问题是由numpy版本引起的,也就是说你numpy的版本过低,所以我们要做的就是升级numpy。若是还不行,那就是pandas的版本问题,再升级一下pandas
·
使用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
最后,安装成功后记得重启项目再运行~
更多推荐
已为社区贡献1条内容
所有评论(0)