AttributeError: module 'matplotlib.pyplot' has no attribute 'inshow'
时间: 2023-10-08 22:11:19 浏览: 228
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为您在使用Matplotlib库时,将`imshow`拼写错误为`inshow`。
正确的函数名应该是`imshow`,表示显示图像。
您可以通过将代码中的`inshow`更正为`imshow`来解决这个错误。例如:
```python
import matplotlib.pyplot as plt
# 其他代码...
plt.imshow(image) # 显示图像
plt.show()
```
请注意检查代码中是否还有其他拼写错误或语法错误。
阅读全文