From c66e4cb5d2c3d42b8f025746dddbd65160ac8036 Mon Sep 17 00:00:00 2001 From: Jonathan Wang <31040440+jonathanpwang@users.noreply.github.com> Date: Sat, 29 Nov 2025 17:02:03 -0500 Subject: [PATCH] docs(book): add instructions for NVIDIA open source drivers --- .../docs/pages/book/getting-started/install.mdx | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/vocs/docs/pages/book/getting-started/install.mdx b/docs/vocs/docs/pages/book/getting-started/install.mdx index 314d7de0ec..dbe7494092 100644 --- a/docs/vocs/docs/pages/book/getting-started/install.mdx +++ b/docs/vocs/docs/pages/book/getting-started/install.mdx @@ -6,7 +6,7 @@ approach, you should make sure you have the necessary [Installation Prerequisite Skip [below](#installation-with-nvidia-gpu-support) for instructions on installing `cargo-openvm` with Nvidia GPU support. -## Installation +## Installation without GPU Support ### Installation Prerequisites @@ -105,13 +105,24 @@ You will need all of the common prerequisites listed [above](#installation-prere For machines running Ubuntu 24.04, you can install Nvidia drivers using -```bash [Ubuntu 24.04] +:::code-group +```bash [Ubuntu 24.04 Open Source] +wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb +sudo dpkg -i cuda-keyring_1.1-1_all.deb +sudo apt-get update + +# If using open-source drivers: +sudo apt-get install -y nvidia-open +``` +```bash [Ubuntu 24.04 Data Center] wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb sudo dpkg -i cuda-keyring_1.1-1_all.deb sudo apt-get update +# If using proprietary data center drivers: sudo apt-get install -y cuda-drivers ``` +::: To check that CUDA drivers are installed, run ```bash @@ -130,7 +141,7 @@ To check that CUDA toolkit is installed, run nvcc --version ``` -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. +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. Post-installation, ensure that you set the proper [path variables for CUDA](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#environment-setup): ```bash