AttributeError:模块“ numpy”没有属性“ byte”

时间:2019-04-30 05:49:00

标签: python-3.7

获取错误:AttributeError:模块'numpy'没有属性'byte'

我是python的新手,我只是尝试下面显示的一些代码。 我不明白为什么会收到此错误,甚至没有moveIdToIndex (id, newIndex) { const valueCopy = [...this.value] const newArrayHead = this.valueCopy .slice(0, newIndex) .filter(_id => _id !== id) const newArrayTail = this.valueCopy .slice(newIndex) .filter(_id => _id !== id) const newArray = [...newArrayHead, id, ...newArrayTail] return this.updateArray(newArray)

import numpy

我希望得到图像的高度和宽度,并且图像的路径在json文件中。但显然,我将其编码错误。

我的英语不好,请多多包涵。 预先感谢。XD

1 个答案:

答案 0 :(得分:0)

我遇到了相同的错误,并通过卸载numpy并再次安装解决了该错误。 还要在这里检查:How to fix AttributeError: module 'numpy' has no attribute 'square'