-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The base TensorFlow docker images do not have Cuda configured correctly #6
Comments
You need to use nvidia-docker (--runtime nvidia), at which point it will work properly. |
The issue happens when used with |
Were you passing |
I'm having the same issue, trying to get the baseline rainbow agent running
It seems like you need to build a different image to test locally if you don't have a gpu (like my macbook) but I am not sure how since I am already using |
Hi @tristansokol , were you able to build different images? New to docker and facing the same issue (macbook doesn't have gpu) |
@HanSeoulOh, not yet (since I believe that I am still building CPU utilizing images & have tried using some other images that start install tensorflow). My current hypothesis is that tensorflow on my machine just can't find my installed Cuda libraries. I'm kind of lost though. |
If you have an Nvidia GPU with nvidia-docker2 installed you should not pass --no-nv. |
The Issue:
import tensorflow
fails withImportError: libcuda.so.1: cannot open shared object file: No such file or directory
usingopenai/retro-agent:tensorflow
as the base docker image.The issue exists in
openai/retro-agent:tensorflow-1.4
also. Haven't tested other tags.The text was updated successfully, but these errors were encountered: