import fluid error
Created by: buaawht
Hi all,
I use nvidia-docker run -d -p 8888:8888 docker.paddlepaddlehub.com/book:latest-gpu
to run a docker container on my GPU.
When I run the code as follow:
import paddle.v2 as paddle
import paddle.fluid as fluid
It raised a exception: ImportError: No module named fluid
.
But when I use docker run -d -p 8888:8888 docker.paddlepaddlehub.com/book
to run a docker container on my CPU.
I run the code and it goes well. why there is a difference between them?
thanks