I am currently trying to run nvidia-docker on Jetson Xavier with Tensorflow enabled inside the container but the main problem I’m facing right now is related to “libcublas.so”.
What I’ve tried so for is the solution mentioned here:
After the OpenGL image creation is completed, I started an interactive container from it. Then I followed the instructions from the link below to install Tensorflow GPU for Xavier:
All of the package installations (pip installs and apt-get installs) completed succesfully but when I try to import tensorflow from both Python 2.7 and 3.6, I get the following error:
ImportError: libcublas.so.10.0: cannot open shared object file: No such file or directory
Also when I enter find / -type f -iname “libcublas*” command, it gives this result:
Yes, it uses the official docker but with “GPU Flags” enabled right? What I mean when I say “nvidia-docker on Jetson” is that the possibility of using the docker on Jetson with GPU enabled.
The script given in that topic is makes using docker with GPU flags enabled on Jetson Xavier possible, doesn’t it?
Hey @doruk898, I’m running into a similar issue. Can you please show your Dockerfile or explain how you were able to mimic the Jetpack installer within a Dockerfile?