Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试对以下错误进行排序,但直到现在还没有得到正确的答案。实际上我使用的是 Ubuntu 10.04 并且我已经安装了 netcdf-3.6.2 但即便如此我还是发现了这个错误,尽管我添加了像这样的标题
import Scientific.IO.NetCDF from Numeric import * from NetCDF import *
但它不会产生任何影响并显示以下错误:
ImportError:没有名为 NetCDF 的模块
如果模块是Scientific.IO.NetCDF,那么你需要做from Scientific.IO.NetCDF import *(你不需要先做import Scientific.IO.NetCDF)。此外,导入所有内容通常是一种不好的风格,应该避免。
Scientific.IO.NetCDF
from Scientific.IO.NetCDF import *
import Scientific.IO.NetCDF