ezc3d icon indicating copy to clipboard operation
ezc3d copied to clipboard

ModuleNotFoundError with numpy 2.0

Open felixchenier opened this issue 7 months ago • 1 comments

ezc3d doesn't import when NumPy 2 is installed.

NumPy 1

conda create -n test1 python=3.12 numpy=1 ezc3d

In this case, this is the version of ezc3d that gets installed:

ezc3d-1.5.10 |py312_python3_h265b4a9_2

>>> import ezc3d

works

NumPy 2

conda create -n test1 python=3.12 numpy=2 ezc3d

In this case, this is the version of ezc3d that gets installed:

ezc3d-1.5.10 |py312_octave_hcae72de_2

(Note "octave" instead of "python")

>>> import ezc3d
ModuleNotFoundError: No module named 'ezc3d'

felixchenier avatar Jul 19 '24 19:07 felixchenier