Hi,
Please also check Run model engine on Jetson NX win Python for information.
libraries mkl_rt not found in [’/usr/local/lib’, ‘/usr/lib’, ‘/usr/lib/aarch64-linux-gnu’]
NOT AVAILABLE
The error is related to NumPy that complains about a missing library.
To solve this issue, you can install all the dependencies and try it again.
sudo apt-get update
sudo apt-get install -y build-essential libatlas-base-dev
sudo apt-get install libatlas-base-dev gfortran
Since NumPy is a frequently used library, you may already have a workable version in the environment.
Thanks.