导入错误:没有名为 numeric 的模块

发布于 2024-12-17 10:45:04 字数 167 浏览 2 评论 0原文

我收到以下错误 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

装纯掩盖桑 2024-12-24 10:45:04

有一个名为 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.

别再吹冷风 2024-12-24 10:45:04

您可能需要安装此模块:链接
Windows 也有二进制文件,因此安装应该很容易。

乔什

You will probably need to install this module: Link
There are binaries for windows too, so installation should be easy.

Josh

赴月观长安 2024-12-24 10:45:04

没有称为numeric 的通用模块。您确定您的意思不是 import numpy 吗?

There is no common module called numeric. Are you sure you don't mean import numpy?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文