Skip to content

Commit 5de5b22

Browse files
docs(book): add instructions for NVIDIA open source drivers (#2285)
1 parent 91e34d5 commit 5de5b22

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

docs/vocs/docs/pages/book/getting-started/install.mdx

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ approach, you should make sure you have the necessary [Installation Prerequisite
66

77
Skip [below](#installation-with-nvidia-gpu-support) for instructions on installing `cargo-openvm` with Nvidia GPU support.
88

9-
## Installation
9+
## Installation without GPU Support
1010

1111
### Installation Prerequisites
1212

@@ -105,13 +105,24 @@ You will need all of the common prerequisites listed [above](#installation-prere
105105

106106
For machines running Ubuntu 24.04, you can install Nvidia drivers using
107107

108-
```bash [Ubuntu 24.04]
108+
:::code-group
109+
```bash [Ubuntu 24.04 Open Source]
110+
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb
111+
sudo dpkg -i cuda-keyring_1.1-1_all.deb
112+
sudo apt-get update
113+
114+
# If using open-source drivers:
115+
sudo apt-get install -y nvidia-open
116+
```
117+
```bash [Ubuntu 24.04 Data Center]
109118
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb
110119
sudo dpkg -i cuda-keyring_1.1-1_all.deb
111120
sudo apt-get update
112121

122+
# If using proprietary data center drivers:
113123
sudo apt-get install -y cuda-drivers
114124
```
125+
:::
115126

116127
To check that CUDA drivers are installed, run
117128
```bash
@@ -130,7 +141,7 @@ To check that CUDA toolkit is installed, run
130141
nvcc --version
131142
```
132143

133-
The OpenVM CLI has been tested with CUDA toolkit version 12.9, and this is the version we recommend installing. The CLI has **not** yet been tested with CUDA toolkit version 13.0.
144+
The OpenVM CLI has been tested with CUDA toolkit version 12.9, and this is the version we recommend installing. The CLI is likely to also work with CUDA toolkit version 13.0, but it has not been tested as thoroughly.
134145

135146
Post-installation, ensure that you set the proper [path variables for CUDA](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#environment-setup):
136147
```bash

0 commit comments

Comments
 (0)