Hello everyone who has contributed to this amazing resource, specially professor Labbe.
While trying to run the code in chapter 8 Designing Kalman filters, I found the following bug in book_format.py line 50:
from distutils.version import LooseVersion
It happens that distutils is no longer part of the Python library.
I could correct this by installing looseversion
and then importing it
from looseversion import LooseVersion
best regards,
Juan
Hello everyone who has contributed to this amazing resource, specially professor Labbe.
While trying to run the code in chapter 8 Designing Kalman filters, I found the following bug in book_format.py line 50:
It happens that distutils is no longer part of the Python library.
I could correct this by installing looseversion
and then importing it
best regards,
Juan