The error message you received indicates that a module compiled with NumPy 1.x is incompatible with NumPy 2.0.0. Here are your options for resolving this issue: 1. **Downgrade NumPy**: - If you can afford to use an older version of NumPy, you can downgrade to a version that is compatible with your existing module. You can do this by running: ```bash pip install numpy<2 ``` 2. **Upgrade the Affected Module**: - Check if the module you are using has a newer version that is compatible with NumPy 2.0.0. You can update the module using: ```bash pip install --upgrade ``` 3. **Rebuild the Module**: - If you have access to the source code of the module and it supports rebuilding, you can compile it against NumPy 2.0.0. Make sure you have the necessary build tools and dependencies. If you’re using `pybind11`, ensure it's version 2.12 or higher: ```bash pip install pybind11>=2.12 ``` - Then follow the module’s build instructions to compile it with the new version of NumPy. 4. **Wait for Updates**: - Some modules may take time to update for compatibility with NumPy 2.0. If the module is critical for your work, keep an eye on its repository or issues page for updates related to NumPy 2.0 support. - **For Users**: Downgrade NumPy or upgrade the affected module. - **For Developers**: Rebuild the module with the updated version of NumPy. navicosoft.com navicosoft.com.au navicosoft.co.uk