anibali/docker-pytorch

nvcc: command not found

seanyuner opened this issue · 2 comments

Many thanks for this repo.

I pulled the cuda9.1 image, and when I ran some DNN model, it worked fine. But when I ran nvcc command, it showed:
nvcc: command not found
I debuged this issue following here, and I checked the /usr/local/cuda-9.1 directory, there was no bin sub-dir.

So how could I run nvcc command in this image? looking forward to your reply.

These images are not built upon the development base images (deliberately, to keep them smaller). If you want to, you can build your own by copying https://github.com/anibali/docker-pytorch/blob/master/cuda-9.1/Dockerfile and changing the base image from:

FROM nvidia/cuda:9.1-base-ubuntu16.04

to

FROM nvidia/cuda:9.1-cudnn7-devel-ubuntu16.04

ok! appreciate your fast reply, I got it.