Our IT department recently upgraded us to Python 3.13, and this caused some trouble installing ChaosMagPy for me, due to removal of some deprecated feature. I got this error on installing with pip:
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?
I managed to fix it in my environment after consulting this Stack Overflow article: https://stackoverflow.com/questions/77364550/attributeerror-module-pkgutil-has-no-attribute-impimporter-did-you-mean
Cloning the repository and changing the numpy version to the exact version numpy==1.26.4 in pyproject.toml seems to have worked.
Our IT department recently upgraded us to Python 3.13, and this caused some trouble installing ChaosMagPy for me, due to removal of some deprecated feature. I got this error on installing with pip:
I managed to fix it in my environment after consulting this Stack Overflow article: https://stackoverflow.com/questions/77364550/attributeerror-module-pkgutil-has-no-attribute-impimporter-did-you-mean
Cloning the repository and changing the numpy version to the exact version
numpy==1.26.4in pyproject.toml seems to have worked.