I installed cuda by apt-get. I need to point cuda libraries in cmake file for compilation of another library however I cannot find the CUDA path. Where is the /include and /bin paths of CUDA in such intallation?
Asked
Active
Viewed 2,145 times
1 Answers
2
You can list files installed by a package using dpkg --listfiles
. For example:
dpkg --listfiles cuda
This should find all the files the package installed, from which you can find the include files.

Yet Another User
- 2,671
- 3
- 23
- 37