Fail to load tensorflow

Hi,

I have a jetson nano with jetpack 4.4, tensorflow 1.14.0, keras 2.2.5, CUDA 10.2.
When I import tensorflow in python3, I get error like image below:

How can I fix it?

Thanks!

Hi,

dlerror: libcudart.so.10.0: cannot open shared object file: No such file or directory ...

Indicating that the installed TensorFlow package is built with CUDA 10.0 but JetPack4.4 use CUDA 10.2.

Please noticed that you will need to use the package built with the same JetPack version for compatibility.
For JetPack4.4, it’s recommended to try this command(tf-v1.15.3):

$ sudo pip3 install --pre --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v44 ‘tensorflow<2’

Thanks.