ImportError:没有名为array_import的模块

时间:2012-05-15 19:22:56

标签: python scipy

任何人都知道如何解决此错误?

异常类型:ImportError 异常值:没有名为array_import的模块

谢谢,

1 个答案:

答案 0 :(得分:0)

Note: It's Stack Overflow etiquette to post the code that caused the problem.

您的问题很可能是由于将“太远”导入一组模块(一直到实际成员而不是模块或子模块)引起的:

import module_name.sub_module.array_import

而不是

  1. from module_name.sub_module import array_import
  2. import module_name.sub_module
  3. 但没有代码就无法分辨。

    修改

    @Dave,非常重要的是你也可能完全错过了这个模块。尝试使用不同的版本或更好的版本,但使用您尝试使用的库,将旧版本替换为。