Using an Endeavour and Blender 3.6.4 I couldn't import models.
After looking after it, it was due to my version of numpy (got the error AttributeError: module 'numpy' has no attribute 'bool' in my terminal)
Simply downgrade your numpy version using the following lines :
python -m pip uninstall numpy
python -m pip install numpy==1.23.1
And the add-on finally works.
It'll be a good idea to update the add-on for new versions of numpy
Using an Endeavour and Blender 3.6.4 I couldn't import models.
After looking after it, it was due to my version of numpy (got the error
AttributeError: module 'numpy' has no attribute 'bool'in my terminal)Simply downgrade your numpy version using the following lines :
And the add-on finally works.
It'll be a good idea to update the add-on for new versions of numpy