Skip to content

Commit cdbddd9

Browse files
Restore CUDA environment script in documentation (#162)
An important part of the script that sets environment variables was mistakenly deleted in #141. This PR restores the missing lines, updated to reference CUDA 13. --------- Co-authored-by: Rick Ratzel <3039903+rlratzel@users.noreply.github.com>
1 parent d8cc2fc commit cdbddd9

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

docs/cugraph-docs/source/installation/source_build.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ Next the env_vars.sh file needs to be edited
191191
vi ./etc/conda/activate.d/env_vars.sh
192192
193193
#!/bin/bash
194+
# for CUDA 13.x
195+
export PATH=/usr/local/cuda-13.0/bin:$PATH
196+
export LD_LIBRARY_PATH=/usr/local/cuda-13.0/lib64:$LD_LIBRARY_PATH
194197
```
195198

196199
```

0 commit comments

Comments
 (0)