1

I have installed cuda via a package manager. The installation seems to be successful:

$ nvcc -V
nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2016 NVIDIA Corporation Built on Sun_Sep__4_22:14:01_CDT_2016 Cuda compilation tools, release 8.0, V8.0.44

And when I type which nvcc I get /usr/bin/nvcc. However, I think the cuda directory is not actually there:

$ ls -a /usr/local/bin
.   easy_install      f2py  gitsome      tensorboard   theano-nose 
xonsh.bat ..  easy_install-2.7  gh    gitsome.bat  theano-cache  xonsh

Is cuda actually installed, and if it is - where?

After running dpkg --get-selections | grep cuda I get the following output:

libcuda1-375                        install
libcudart8.0:amd64              install
nvidia-cuda-dev                 install
nvidia-cuda-doc                 install
nvidia-cuda-gdb                 install
nvidia-cuda-toolkit             install
David Foerster
  • 36,264
  • 56
  • 94
  • 147
user1767774
  • 125
  • 2
  • 8

1 Answers1

2

CUDA seems to be successfully installed. It should get installed in /usr/local/.

Try checking with

dpkg --get-selections | grep cuda

This command shows the following result for successfully installed cuda7.5: result of above command after installing cuda 7.5

David Foerster
  • 36,264
  • 56
  • 94
  • 147
Nidhi
  • 21
  • 4