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

发布于 2024-11-19 08:41:47 字数 292 浏览 4 评论 0原文

我正在尝试对以下错误进行排序,但到目前为止还没有得到正确的答案。实际上我使用的是 Ubuntu 10.04 并且我已经安装了 netcdf-3.6.2 但即使这样我也发现了这个错误,尽管我添加了类似的标头

import Scientific.IO.NetCDF
from Numeric import * 
from NetCDF import *

但它不会产生任何影响并显示以下错误:

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

I am trying to sort the following error but not getting the correct answer till now. Actually I am using Ubuntu 10.04 and I have installed netcdf-3.6.2 but even then i found this error, although I added the header like

import Scientific.IO.NetCDF
from Numeric import * 
from NetCDF import *

But it does not make any impact and shows the following error:

ImportError: No module named NetCDF

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

泛泛之交 2024-11-26 08:41:47

如果模块是 Scientific.IO.NetCDF,那么您需要执行 from Scientific.IO.NetCDF import * (并且不需要执行 import Scientific.IO.NetCDF 首先)。此外,导入所有内容通常是一种不好的风格,应该避免。

If the module is Scientific.IO.NetCDF, then you need to do from Scientific.IO.NetCDF import * (and you don't need to do import Scientific.IO.NetCDF first). Also, importing everything is often a bad style, and should be avoided.

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