My pymc3 can't work,could you tell me how to fix it

You can find the C code in this temporary file: C:\Users\CUG_AS\AppData\Local\Temp\theano_compilation_error_ggtzltfr
Traceback (most recent call last):
File “D:/Spyder/edwqe.py”, line 16, in
y = pm.Bernoulli(‘y’, p=theta, observed=data)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\pymc3\distributions\distribution.py”, line 46, in new
return model.Var(name, dist, data, total_size)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\pymc3\model.py”, line 856, in Var
total_size=total_size, model=self)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\pymc3\model.py”, line 1389, in init
self.logp_elemwiset = distribution.logp(data)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\pymc3\distributions\discrete.py”, line 357, in logp
value >= 0, value <= 1,
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\tensor\var.py”, line 59, in le
rval = theano.tensor.basic.le(self, other)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\op.py”, line 670, in call
no_recycling=[])
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\op.py”, line 955, in make_thunk
no_recycling)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\op.py”, line 858, in make_c_thunk
output_storage=node_output_storage)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\cc.py”, line 1217, in make_thunk
keep_lock=keep_lock)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\cc.py”, line 1157, in compile
keep_lock=keep_lock)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\cc.py”, line 1624, in cthunk_factory
key=key, lnk=self, keep_lock=keep_lock)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\cmodule.py”, line 1189, in module_from_key
module = lnk.compile_cmodule(location)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\cc.py”, line 1527, in compile_cmodule
preargs=preargs)
File “C:\Users\CUG_AS\Anaconda3\lib\site-packages\theano\gof\cmodule.py”, line 2399, in compile_str
(status, compile_stderr.replace(’\n’, '. ')))
Exception: ('Compilation failed (return status=1): C:\Users\CUG_AS\AppData\Local\Temp\ccKAQVaE.s: Assembler messages:\r. C:\Users\CUG_AS\AppData\Local\Temp\ccKAQVaE.s:284: Error: invalid register for .seh_savexmm\r. ', ‘[Elemwise{le,no_inplace}(TensorConstant{[1 0 0 0]}, <TensorType(int8, (True,))>)]’)

I have this same problem. I believe the key issue here is

Error: invalid register for .seh_savexmm\r. ’

Stack Overflow has many similar cases

Lots of googling suggest this is an issue with the compiler. Are you using GCC compiler? Were you able to resolve the problem and get PyMC3 running?