我正在尝试安装这个https://github.com/NVlabs/ssn_超像素,但是在步骤cmake ..中得到了下面的错误
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
CUDA_cublas_LIBRARY (ADVANCED)
linked by target "caffe" in directory /home/haziq/ASTAR/scripts/ssn_superpixels/lib/video_prop_networks/lib/caffe/src/caffe然后我试图搜索这个库,并找到了一个libcublas.so.9.1和libcublas.so.9.1.85。
(base) haziq@mdeep:~/ASTAR/scripts/ssncaffe$ ls /usr/lib/x86_64-linux-gnu/libcublas.so.9.1
libcublas.so.9.1 libcublas.so.9.1.85我现在如何告诉CMake通往CUDA_cublas_LIBRARY的路径?命令
cmake .. CUDA_cublas_LIBRARY=/usr/lib/x86_64-linux-gnu/libcublas.so.9.1不起作用?
发布于 2020-07-27 11:53:39
你可以试试这个:
cmake .. -DCUDA_cublas_LIBRARY=/usr/lib/x86_64-linux-gnu/libcublas.so.9.1https://askubuntu.com/questions/1262391
复制相似问题