from numpy.distutils.core import Extension as Ext ModuleNotFoundError: 没有名为“numpy”的模块;
当尝试使用 python3.x ModuleNotFoundError 构建我的包(python -m build)时,出现以下错误
Setup.py
from numpy.distutils.core import Extension as Ext
:没有名为“numpy”的模块
Y get the folowing error when trying to build my package (python -m build) with python3.x
Setup.py
from numpy.distutils.core import Extension as Ext
ModuleNotFoundError: No module named 'numpy'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先在终端中通过
pip install numpy
安装numpy
。Install
numpy
first bypip install numpy
on in the terminal.