Skip to content

Commit 21212e1

Browse files
Change env variable snippet to match consistency
Co-authored-by: Rick Ratzel <[email protected]>
1 parent d7a9474 commit 21212e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +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-
export PATH=/usr/local/cuda-13.0/bin:$PATH # or cuda-12.9 depending on the version you're using
195-
export LD_LIBRARY_PATH=/usr/local/cuda-13.0/lib64:$LD_LIBRARY_PATH # or cuda-12.9
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
196197
```
197198

198199
```

0 commit comments

Comments
 (0)