pyhsmm icon indicating copy to clipboard operation
pyhsmm copied to clipboard

Running examples failed - ModuleNotFoundError: No module named 'pyhsmm.internals.hmm_messages_interface'

Open rnjv opened this issue 5 years ago • 2 comments

I have the error:

ModuleNotFoundError: No module named 'pyhsmm.internals.hmm_messages_interface'

when I run hmm.py from examples.

rnjv avatar Sep 30 '20 00:09 rnjv

I fixed this issue by running python setup.py build_ext --inplace

These issues helped me: #106 #22

cwj22 avatar Nov 19 '20 02:11 cwj22

The above solutions didnt work for me, I was switching between this error, an error around future module not being installed and "ImportError: cannot import name 'logsumexp' from 'scipy.misc'"

What worked for me was in a fresh repository to clone pyhsmm via: git clone https://github.com/mattjj/pyhsmm.git

then install from the cloned source via:

cd pyhsmm/
pip install -e .

(don't forget the dot at the end)

Fionn-Mac-Cumhaill avatar Jan 31 '21 22:01 Fionn-Mac-Cumhaill