38,757
edits
No edit summary |
(Updating to match new version of source page) |
||
Line 610: | Line 610: | ||
Dans le doute, recommencez avec un nouvel environnement. | Dans le doute, recommencez avec un nouvel environnement. | ||
=== ImportError: numpy.core.multiarray failed to import === | |||
When trying to import a Python module that depends on Numpy, one may encounter <code>ImportError: numpy.core.multiarray failed to import</code>. | |||
This is caused by an incompatible version of numpy installed or used and you must install a compatible version. | |||
This is especially true with the [https://numpy.org/devdocs/dev/depending_on_numpy.html#numpy-2-0-specific-advice release of Numpy 2.0 which breaks the ABI.] | |||
In the case of a wheel that was built with version 1.x but installed version 2.x, one must installed a lower version with: <code>pip install --no-index 'numpy<2.0'</code> |