导入错误:没有名为 NetCDF 的模块
我正在尝试对以下错误进行排序,但到目前为止还没有得到正确的答案。实际上我使用的是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果模块是
Scientific.IO.NetCDF
,那么您需要执行from Scientific.IO.NetCDF import *
(并且不需要执行import Scientific.IO.NetCDF
首先)。此外,导入所有内容通常是一种不好的风格,应该避免。If the module is
Scientific.IO.NetCDF
, then you need to dofrom Scientific.IO.NetCDF import *
(and you don't need to doimport Scientific.IO.NetCDF
first). Also, importing everything is often a bad style, and should be avoided.