ImportError:无法导入名称random_integers

时间:2012-06-22 11:21:15

标签: python numpy importerror

我的Python代码带有包含以下行的前导码:

from numpy import array,arccosh,random_integers

稍后在代码中我(成功)使用arrayarccosh。但是,我在程序运行时遇到错误:

from numpy import array,arccosh,random_integers
ImportError: cannot import name random_integers

有人可以帮忙吗? 感谢。

1 个答案:

答案 0 :(得分:5)

我没有NumPy的经验,但快速的Google搜索告诉我random_ingegers实际上在numpy.random。那么,from numpy.random import random_integers,也许?