You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is possible to install the OpenVM CLI with support for Nvidia GPUs. This requires installation on a machine with an Nvidia GPU and associated drivers (see [Prerequisites (CUDA)](#installation-prerequisites-cuda))
91
97
92
-
## Option 1: Install Via Git URL (Recommended)
98
+
###Option 1: Install Via Git URL (Recommended)
93
99
94
100
Begin the installation:
95
101
@@ -103,7 +109,7 @@ This will globally install `cargo-openvm`. You can validate a successful install
103
109
cargo openvm --version
104
110
```
105
111
106
-
## Option 2: Build from source
112
+
###Option 2: Build from source
107
113
108
114
To build from source, clone the repository and begin the installation.
109
115
@@ -119,40 +125,44 @@ This will globally install `cargo-openvm`. You can validate a successful install
119
125
cargo openvm --version
120
126
```
121
127
122
-
## Installation Prerequisites (CUDA)
128
+
###Installation Prerequisites (CUDA)
123
129
124
-
You will need all of the [Common Prerequisites](#installation-prerequisites-common). In addition, you will need to have a machine with
130
+
You will need all of the [Common Prerequisites](#installation-prerequisites). In addition, you will need to have a machine with
CUDA toolkit can be installed using the following command, assuming the keyring above has already been installed:
150
+
142
151
```bash [Ubuntu 24.04]
143
152
sudo apt-get install -y cuda-toolkit
144
153
export PATH="/usr/local/cuda/bin:$PATH"
145
154
```
155
+
146
156
To check that CUDA toolkit is installed, run
147
157
```bash
148
158
nvcc --version
149
159
```
150
160
151
161
The OpenVM CLI has been tested with CUDA toolkit version 12.8, and we recommend using CUDA toolkit version 12.8 or higher.
152
162
153
-
Post-installation, ensure that your shell profile or startup script sets the proper [path variables for CUDA](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#environment-setup):
163
+
Post-installation, ensure that you set the proper [path variables for CUDA](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#environment-setup):
0 commit comments