-1

I got the following error: AttributeError: module 'arviz' has not attribute 'geweke'.

See the attached full stack trace below: error stack trace

How can I fix it?

Liran Funaro
  • 2,750
  • 2
  • 22
  • 33
  • 1
    Next time, please provide the code as a snippet instead of a linked image. You can use a snippet by using the \`single line\` or triple for multi-line \`\`\` multi-line \`\`\`. – TwoFace Sep 13 '21 at 03:27
  • Does this answer your question? [Cannot import pymc3 module due to geweke](https://stackoverflow.com/questions/67349537/cannot-import-pymc3-module-due-to-geweke) – OriolAbril Sep 27 '21 at 06:09

1 Answers1

1

It seems as though the pymc3 module on your computer is not configured correctly. I would try reinstalling pymc3 with pip install --force-reinstall pymc3. If you have python3 and python2, then you may have to use pip3 instead of pip.

TwoFace
  • 101
  • 4