C-bowman / inference-tools

Python tools for Bayesian data analysis
MIT License
28 stars 3 forks source link

Got this error ModuleNotFoundError: No module named 'inference.models' #41

Closed rizkiduwinanto closed 3 months ago

rizkiduwinanto commented 11 months ago

I got this error ModuleNotFoundError: No module named 'inference.models', how do you fix it?

C-bowman commented 11 months ago

Hi @rizkiduwinanto,

The error is correct - inference-tools doesn't have a models module, so I would guess in your code you have an import line which looks like

from inference.models import [something]

Which will be causing the problem.

Could you post some additional information, like the full Traceback of the error? Also, which version of inference-tools do you have installed?

Thanks