Hi guys,
I freshly flashed my Jetson TX2 with Jetpack4.3, everything went well.
I tried to install Tensorflow-gpu 1.15 (the same version as my host) by following this documentation:
Everything seem to work properly but when I want to call “import tensorflow” in python I have this issue poping up:
>>> import tensorflow as tf
2020-05-20 10:07:52.366699: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library ‘libcudart.so.10.0’; dlerror: libcudart.so.10.0: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/local/cuda-10.2/lib64:
2020-05-20 10:07:52.366764: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
2020-05-20 10:07:52.367045: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library ‘libcudart.so.10.0’; dlerror: libcudart.so.10.0: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: /usr/local/cuda-10.2/lib64:
2020-05-20 10:07:52.367081: I tensorflow/stream_executor/cuda/cudart_stub.cc:29] Ignore above cudart dlerror if you do not have a GPU set up on your machine.
Segmentation fault (core dumped)
I should precise that I’m using a virtualenv and I made the installation inside it.
The problem seems related to cudart library but it is installed:
(cv) nvidia@nvidia-desktop:~$ dpkg -l | grep cudart
ii cuda-cudart-10-2 10.2.89-1 arm64 CUDA Runtime native Libraries
ii cuda-cudart-dev-10-2 10.2.89-1 arm64 CUDA Runtime native dev links, headers
Any ideas where it can come from ?
Thanks