Software Requirements and Conventions Used
Category | Requirements, Conventions or Software Version Used |
---|---|
System | CentOS 7.5 or higher |
Software | Existing Nvidia Driver installation on CentOS 7> |
Other | Privileged access to your Linux system as root or via the sudo command. |
Conventions | # - requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command $ - requires given linux commands to be executed as a regular non-privileged user |
How to install NVIDIA CUDA Toolkit on CentOS 7 Linux step by step instructions
- Download the latest Nvidia CUDA repository package
cuda-repo-rhel7-*.rpm
. For example use thewget
command to download the latest CUDA package which is at the time of writing the CUDA version 10:SUBSCRIBE NEWSLETTER & RSS
Subscribe to RSS and NEWSLETTER and receive latest Linux news, jobs, career advice and tutorials.$ wget https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-repo-rhel7-10.0.130-1.x86_64.rpm
The package should now be available within your home directory:$ ls cuda-repo-rhel7-10.0.130-1.x86_64.rpm cuda-repo-rhel7-10.0.130-1.x86_64.rpm
- Install the CUDA repository package. This will enable CUDA repository on your CentOS 7 Linux system:
# rpm -i cuda-repo-*.rpm
- Select CUDA meta package you wish to install based on the below table. For example the below command will install the entire CUDA toolkit and driver packages:
# yum install cuda
Example of Meta Packages Available for CUDA 10.0. Reference: NVIDIA.com Package name Description cuda Installs all CUDA Toolkit and Driver packages. Handles upgrading to the next version of the cuda package when it's released. cuda-10.0 Installs all CUDA Toolkit and Driver packages. Remains at version 10.0 until an additional version of CUDA is installed. cuda-toolkit-10.0 Installs all CUDA Toolkit packages required to develop CUDA applications. Does not include the driver. cuda-tools-10.0 Installs all CUDA command line and visual tools. cuda-runtime-10.0 Installs all CUDA Toolkit packages required to run CUDA applications, as well as the Driver packages. cuda-compiler-10.0 Installs all CUDA compiler packages. cuda-libraries-10.0 Installs all runtime CUDA Library packages. cuda-libraries-dev-10.0 Installs all development CUDA Library packages. cuda-drivers Installs all Driver packages. Handles upgrading to the next version of the Driver packages when they're released. - Export system path to Nvidia CUDA binary executables. Open the
~/.bashrc
using your preferred text editor and add the following two lines:export PATH=/usr/local/cuda/bin:$PATH export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH
- Re-login or read your updated
~/.bashrc
file:$ source ~/.bashrc
- Confirm the correct CUDA installation:
$ nvcc --version $ nvidia-smi
- Perform further tests by compiling your first CUDA program:
$ mkdir cuda-samples $ cuda-install-samples-10.0.sh cuda-samples/ $ cd cuda-samples/NVIDIA_CUDA-10.0_Samples/0_Simple/clock $ make