From 1789b9bff48049c72623c2b39b8be70286ffa385 Mon Sep 17 00:00:00 2001 From: Alex Fender Date: Fri, 27 Sep 2019 09:26:27 -0500 Subject: [PATCH] Update CONTRIBUTING.md --- CONTRIBUTING.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 848642ca568..0931ae2980b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -113,11 +113,14 @@ To install cuGraph from source, ensure the dependencies are met and follow the s ```bash # create the conda environment (assuming in base `cugraph` directory) # for CUDA 9.2 -conda env create --name cugraph_dev --file conda/environments/cugraph_dev.yml +conda env create --name cugraph_dev --file conda/environments/cugraph_dev92.yml # for CUDA 10 conda env create --name cugraph_dev --file conda/environments/cugraph_dev_cuda10.yml +# for CUDA 10.1 +conda env create --name cugraph_dev --file conda/environments/cugraph_dev_cuda101.yml + # activate the environment conda activate cugraph_dev