diff --git a/.gitignore b/.gitignore index 4829b2ecd..7fd191dc3 100644 --- a/.gitignore +++ b/.gitignore @@ -71,3 +71,6 @@ docs/cuopt/build cpp/include/cuopt/semantic_version.hpp !datasets/quadratic_programming !datasets/quadratic_programming/** + +# conda env (recommended name) +.cuopt_env diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a935201f2..8c596c3a4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -136,9 +136,9 @@ Please install conda if you don't have it already. You can install [miniforge](h # create the conda environment (assuming in base `cuopt` directory) # note: cuOpt currently doesn't support `channel_priority: strict`; # use `channel_priority: flexible` instead -conda env create --name cuopt_dev --file conda/environments/all_cuda-131_arch-$(uname -m).yaml +conda env create -p ./.cuopt_env --file conda/environments/all_cuda-131_arch-$(uname -m).yaml # activate the environment -conda activate cuopt_dev +conda activate ./.cuopt_env ``` - **Note**: the conda environment files are updated frequently, so the