导入错误:没有名为 numeric 的模块
我收到以下错误 ImportError: 如果我的 python 源代码中有以下导入,则没有名为 numeric 的模块
from numeric import *
。如何在我的 Windows 机器上针对 python 2.7.x 编译器运行它?
I get the following error
ImportError: No module named numeric if I have the following import
from numeric import *
in my python source code. How do I get this running on my Windows box against a python 2.7.x compiler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一个名为 numeric 的模块,但它已被弃用多年,取而代之的是 numpy。您可能想更新代码以使用 numpy 代替。
如果你确实需要数字,你可以在这里获取它,但是你必须编译它来自 Python 2.7 的源代码,因为最新的二进制文件适用于 2.4。
There is a module called numeric, but it's been deprecated for years in favour of numpy. You probably want to update your code to use numpy instead.
If you really need numeric, you can get it here, but you'll have to compile it from source for Python 2.7, because the latest binaries are for 2.4.
您可能需要安装此模块:链接
Windows 也有二进制文件,因此安装应该很容易。
乔什
You will probably need to install this module: Link
There are binaries for windows too, so installation should be easy.
Josh
没有称为
numeric
的通用模块。您确定您的意思不是import numpy
吗?There is no common module called
numeric
. Are you sure you don't meanimport numpy
?