Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
coderabbitai[bot] marked this conversation as resolved.
```

- **Note**: the conda environment files are updated frequently, so the
Expand Down
Loading