Hello,
I am using Jetson Orin nano with 36.4.3 firmware, Jetpack 6.2.
when I try to install the latest numpy 2.2.4 I see the below error message and forces me to install 1.26 package.
A module that was compiled using NumPy 1.x cannot be run in
NumPy 2.2.4 as it may crash. To support both 1.x and 2.x
versions of NumPy, modules must be compiled with NumPy 2.0.
Some module may need to rebuild instead e.g. with ‘pybind11>=2.12’.
If you are a user of the module, the easiest solution will be to
downgrade to ‘numpy<2’ or try to upgrade the affected module.
We expect that some modules will need time to support NumPy 2.
I double-checked the installations there is no conflicting package in my env or the server.
I am using virtual env created using anaconda3.
Hi,
It looks like certain modules are compiled in NumPy 1.x so it reports the error. Would suggest check which module triggers the error and see if the modules can be rebuilt with later version of NumPy.
It appears that it is coming from the module pybind11 see the below error logs.
Traceback (most recent call last):
File “/home/server/onnx/TENNS-OPH/onnx/apps/simple_ssm/utils/simple_ssm_model.py”, line 5, in
import onnxruntime
File “/home/server/.conda/envs/torch_test/lib/python3.10/site-packages/onnxruntime/init.py”, line 58, in
raise import_capi_exception
File “/home/server/.conda/envs/torch_test/lib/python3.10/site-packages/onnxruntime/init.py”, line 23, in
from onnxruntime.capi._pybind_state import ExecutionMode # noqa: F401
File “/home/server/.conda/envs/torch_test/lib/python3.10/site-packages/onnxruntime/capi/_pybind_state.py”, line 32, in
from .onnxruntime_pybind11_state import * # noqa
ImportError