Installing CUDA 5.0 RC samples

前端 未结 3 1436
野的像风
野的像风 2021-02-13 01:41

I tried to install the full CUDA 5.0 package but I got the following error:

Driver:   Not Selected
Toolkit:  Not Selected
Samples:  Installation Failed. Missing          


        
3条回答
  •  长情又很酷
    2021-02-13 01:55

    Ubuntu 12.04 x64 actually creates a /usr/lib/glut.so -- it just points to libglut.so.3 not /usr/lib/x86_64-linux-gnu/libglut.so

    rm /usr/lib/libglut.so;
    ln -s /usr/lib/x86_64-linux-gnu/libglut.so /usr/lib/libglut.so
    

提交回复
热议问题