ImportError: No module named pymc3
ImportError: No module named pymc3
我正在尝试 运行 以下示例:
import pymc3 as pm
from numpy import array, empty
from numpy.random import randint
__all__ = [
'disasters_array',
'switchpoint',
'early_mean',
'late_mean',
'rate',
'disasters']
disasters_array = array([4, 5, 4, 0, 1, 4, 3, 4, 0, 6, 3, 3, 4, 0, 2, 6,
3, 3, 5, 4, 5, 3, 1, 4, 4, 1, 5, 5, 3, 4, 2, 5,
2, 2, 3, 4, 2, 1, 3, 2, 2, 1, 1, 1, 1, 3, 0, 0,
1, 0, 1, 1, 0, 0, 3, 1, 0, 3, 2, 2, 0, 1, 1, 1,
0, 1, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 1, 1, 0, 2,
3, 3, 1, 1, 2, 1, 1, 1, 1, 2, 4, 2, 0, 0, 1, 4,
0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1])
switchpoint = DiscreteUniform(
'switchpoint',
lower=0,
upper=110,
doc='Switchpoint[year]')
early_mean = Exponential('early_mean', beta=1.)
late_mean = Exponential('late_mean', beta=1.)
@deterministic(plot=False)
def rate(s=switchpoint, e=early_mean, l=late_mean):
''' Concatenate Poisson means '''
out = empty(len(disasters_array))
out[:s] = e
out[s:] = l
return out
disasters = Poisson('disasters', mu=rate, value=disasters_array, observed=True)
当我运行它时,它会抛出以下错误:
导入错误:没有名为 pymc3 的模块
我用pip安装了pymc3,安装成功。我不知道为什么它找不到pymc3。有人知道如何解决这个问题吗?我用过几个编辑器,其中 none 个可以正常工作。
谢谢!
您可能安装了不止一个 python 解释器。或者有更多的虚拟环境。
您在其中一个安装了 pymc3,而您的脚本与另一个一起运行。
我正在尝试 运行 以下示例:
import pymc3 as pm
from numpy import array, empty
from numpy.random import randint
__all__ = [
'disasters_array',
'switchpoint',
'early_mean',
'late_mean',
'rate',
'disasters']
disasters_array = array([4, 5, 4, 0, 1, 4, 3, 4, 0, 6, 3, 3, 4, 0, 2, 6,
3, 3, 5, 4, 5, 3, 1, 4, 4, 1, 5, 5, 3, 4, 2, 5,
2, 2, 3, 4, 2, 1, 3, 2, 2, 1, 1, 1, 1, 3, 0, 0,
1, 0, 1, 1, 0, 0, 3, 1, 0, 3, 2, 2, 0, 1, 1, 1,
0, 1, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0, 1, 1, 0, 2,
3, 3, 1, 1, 2, 1, 1, 1, 1, 2, 4, 2, 0, 0, 1, 4,
0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1])
switchpoint = DiscreteUniform(
'switchpoint',
lower=0,
upper=110,
doc='Switchpoint[year]')
early_mean = Exponential('early_mean', beta=1.)
late_mean = Exponential('late_mean', beta=1.)
@deterministic(plot=False)
def rate(s=switchpoint, e=early_mean, l=late_mean):
''' Concatenate Poisson means '''
out = empty(len(disasters_array))
out[:s] = e
out[s:] = l
return out
disasters = Poisson('disasters', mu=rate, value=disasters_array, observed=True)
当我运行它时,它会抛出以下错误: 导入错误:没有名为 pymc3 的模块
我用pip安装了pymc3,安装成功。我不知道为什么它找不到pymc3。有人知道如何解决这个问题吗?我用过几个编辑器,其中 none 个可以正常工作。
谢谢!
您可能安装了不止一个 python 解释器。或者有更多的虚拟环境。
您在其中一个安装了 pymc3,而您的脚本与另一个一起运行。