Where did CUDA get installed in my computer?

后端 未结 4 851
轻奢々
轻奢々 2021-01-30 09:16

I\'m trying to install CUDA 7.5 in my ubuntu 14.04. I followed everything in this guide (installation through package): http://developer.download.nvidia.com/compute/cuda/7.5/Pro

4条回答
  •  失恋的感觉
    2021-01-30 09:45

    Usually, it is /usr/local/cuda. If this is not the case, you can try to locate cuda. If you want to find directories only, run

    locate cuda | grep /cuda$
    

    or

    find / -type d -name cuda 2>/dev/null
    

    For me, it turned out to be in /opt/cuda-7.5

提交回复
热议问题