no module named 'numpy.testing
时间: 2023-04-27 20:06:52 浏览: 362
numpy.meshgrid()理解(小结)
5星 · 资源好评率100%
这个错误提示是因为你的代码中使用了numpy.testing模块,但是你的电脑上没有安装numpy模块。你需要先安装numpy模块,才能使用numpy.testing模块。你可以通过以下命令安装numpy模块:
pip install numpy
安装完成后,再运行你的代码就不会出现这个错误了。
阅读全文