Closed JaimeArboleda closed 3 years ago
Hi @JaimeArboleda!
I can reproduce that behavior. It is because the pymc3 version referenced (pip installed from github) wants to use aesara, rather than theano-pymc (which is probably what you should want to use for another while). Installing the current (3.11.2) version from conda-forge would be the quickest way to get a working environment for now.
If it helps, I copy-paste a parameter file below that works for me, that you can use instead of the existing environment.yml, which would probably work. If desired, I can make a pull request with this environment file, but it switches conda channel too and removes stuff from pip to conda, which I am not sure maintainers want... Hope this helps either way!
Note that you need to remove your environment first (conda env remove -n stat-rethink2-pymc3
) and then create a new one the same way as before.
name: stat-rethink2-pymc3
channels:
- conda-forge
dependencies:
- jupyter
- seaborn
- mkl-service
- watermark
- pymc3
- arviz
- pip
- pip:
- causalgraphicalmodels
- daft
Thank you so much harcel!!!!!! It worked perfectly! :)
First of all, thanks for this wonderful package and for the effort of adapting the R code in those bayesian books to Python.
I am trying to use the Rethinking_2 code examples. I have cloned the full repo and then I have followed the instructions:
But then, when opening the jupyter notebook of the second chapter, the first cell fails when trying to to the imports:
I have the following error:
I don't know what should I do. Thanks in advance.