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
export PATH=/usr/local/cuda/bin:$PATH
– Nidhi Jun 01 '17 at 13:08