Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 24 additions & 14 deletions container-toolkit/install-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,22 @@

### Prerequisites

Install the NVIDIA GPU driver for your Linux distribution.
NVIDIA recommends installing the driver by using the package manager for your distribution.
1. Read [this section](./supported-platforms.md) about platform support.

2. Install the NVIDIA GPU driver for your Linux distribution.
NVIDIA recommends installing the driver by using the package manager for your distribution.
For information about installing the driver with a package manager, refer to
the [_NVIDIA Driver Installation Quickstart Guide_](https://docs.nvidia.com/datacenter/tesla/tesla-installation-notes/index.html).
Alternatively, you can install the driver by [downloading](https://www.nvidia.com/en-us/drivers/) a `.run` installer.

Alternatively, you can install the driver by downloading a `.run` installer.
Refer to the NVIDIA [Official Drivers](https://www.nvidia.com/Download/index.aspx?lang=en-us) page.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason why we got ride of this link? I dont remember if this has come up before in a previous comments. thanks

Copy link
Contributor Author

@jgehrcke jgehrcke Feb 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No removal. I replaced it with a more modern URL. You will notice in your browser that the old URL redirects to /en-us/drivers.

Personally, I like to look at changes like this in the rendered view.

We should also work towards using a concept often called "semantic line breaks" to keep the markdown source diff better reviewable.


### Installing with Apt
(installing-with-apt)=

### With `apt`: Ubuntu, Debian

```{note}
These instructions [should work](./supported-platforms.md) for any Debian-derived distribution.
```

1. Configure the production repository:

Expand Down Expand Up @@ -53,7 +59,14 @@ Refer to the NVIDIA [Official Drivers](https://www.nvidia.com/Download/index.asp
$ sudo apt-get install -y nvidia-container-toolkit
```

### Installing with Yum or Dnf
(installing-with-yum-or-dnf)=

### With `dnf`: RHEL/CentOS, Fedora, Amazon Linux


```{note}
These instructions [should work](./supported-platforms.md) for many RPM-based distributions.
```

1. Configure the production repository:

Expand All @@ -65,16 +78,18 @@ Refer to the NVIDIA [Official Drivers](https://www.nvidia.com/Download/index.asp
Optionally, configure the repository to use experimental packages:

```console
$ sudo yum-config-manager --enable nvidia-container-toolkit-experimental
$ sudo dnf-config-manager --enable nvidia-container-toolkit-experimental
```

1. Install the NVIDIA Container Toolkit packages:

```console
$ sudo yum install -y nvidia-container-toolkit
$ sudo dnf install -y nvidia-container-toolkit
```

### Installing with Zypper
(installing-with-zypper)=

### With `zypper`: OpenSUSE, SLE

1. Configure the production repository:

Expand All @@ -88,11 +103,6 @@ Refer to the NVIDIA [Official Drivers](https://www.nvidia.com/Download/index.asp
$ sudo zypper modifyrepo --enable nvidia-container-toolkit-experimental
```

<!--
TODO:
- [ ] Experimental repos: zypper modifyrepo --enable nvidia-container-toolkit-experimental
-->

1. Install the NVIDIA Container Toolkit packages:

```console
Expand Down