python – 如何修复AttributeError:模块’numpy’没有属性’square’

前端之家收集整理的这篇文章主要介绍了python – 如何修复AttributeError:模块’numpy’没有属性’square’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我已将numpy更新为1.14.0.我使用Windows 10.我试图运行我的代码,我收到此错误

AttributeError: module ‘numpy’ has no attribute ‘square’

这是我的进口:

%matplotlib inline
import matplotlib.pyplot as plt
import tensorflow as tf
import numpy as np
from sklearn.metrics import confusion_matrix
import math
最佳答案
删除了numpy.py然后更新了我的numpy,它工作了!
原文链接:https://www.f2er.com/python/438831.html

猜你在找的Python相关文章