原文地址: http://www.r-tutor.com/gpu-computing/cuda-installation/cuda7.5-ubuntu
The following explains how to install CUDA Toolkit 7.5 on 64-bit Ubuntu 14.04 Linux. I have tested it on a self-assembled desktop with NVIDIA GeForce GTX 550 Ti graphics card. The instruction assumes you have the necessary CUDA compatible hardware support. Depending on your system configuration, your mileage may vary.
CUDA Repository
Retrieve the CUDA repository package for Ubuntu 14.04 from the CUDA download site and install it in a terminal.
CUDA Toolkit
Then you can install the CUDA Toolkit using apt-get.
You should reboot the system afterwards and verify the driver installation with the nvidia-settings utility.
Environment Variables
As part of the CUDA environment, you should add the following in the .bashrc file of your home folder.
export LD_LIBRARY_PATH=${CUDA_HOME}/lib64
PATH=${CUDA_HOME}/bin:${PATH}
export PATH
CUDA SDK Samples
Now you can copy the SDK samples into your home directory, and build a test sample.
$ cd ~/NVIDIA_CUDA -7.5_Samples
$ cd 1_Utilities/deviceQuery
$ make
If everything goes well, you should be able to verify your CUDA installation by running the deviceQuerysample.
本文详细介绍了如何在64位Ubuntu 14.04 Linux系统上安装CUDA Toolkit 7.5,并验证安装过程。包括设置CUDA仓库、安装CUDA Toolkit、配置环境变量以及测试安装是否成功。
9581

被折叠的 条评论
为什么被折叠?



