AttributeError: module 'numpy' has no attribute 'complex'.
时间: 2023-09-08 19:09:19 浏览: 252
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为在某个地方使用了numpy.complex,但实际上numpy没有这个属性。可能是因为numpy版本过低,建议更新numpy版本或者修改代码中使用的属性。你可以尝试使用以下方法来解决这个问题:
1. 检查numpy的版本,使用pip install numpy --upgrade升级numpy版本。
2. 修改代码,使用正确的numpy属性或者方法。
3. 检查代码中是否有其他库与numpy重名,可能会导致属性冲突。
阅读全文