如何解决导入stats.scipy.loguniform的错误

时间:2019-12-30 18:51:08

标签: python scipy statistics

从scipy.stats导入“ loguniform”时,出现导入错误。

colab.google和jupyter中的两者。 我正在运行python 3.7。 scipy版本1.3.0 我什至只是升级到1.4.1版,仍然出现相同的错误。

代码:

from scipy.stats import loguniform

错误:

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-3-b01b9ec1c262> in <module>
----> 1 from scipy.stats import loguniform

ImportError: cannot import name 'loguniform' from 'scipy.stats'

其他发行版的加载情况很好, from scipy.stats import uniform 没问题。

1 个答案:

答案 0 :(得分:0)

对于 Python 3,SciPy 1.4.0 或更高版本应该允许您安装 loguniform

因此,键入 import scipy,然后键入 print(scipy.__version__) 并确保已安装 1.4.0 或更新版本,然后键入 from loguniform import scripy.stats