Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add LibMambaUnsatisfiableError to Installation Troubleshooting #488

Merged
Merged
Changes from 1 commit
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
11 changes: 11 additions & 0 deletions install/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@ To resolve this error please follow one of these steps:
- Use [Mamba directly](https://mamba.readthedocs.io/en/latest/installation.html){: target="_blank"}
- Use the classic solver by removing `--solver=libmamba` from the `conda create` command provided by the selector

<i class="fas fa-info-circle"></i> A `LibMambaUnsatisfiableError` occurs:<br/>
raydouglass marked this conversation as resolved.
Show resolved Hide resolved
You may see something like:
```
LibMambaUnsatisfiableError: Encountered problems while solving:
- package cuda-version-12.0-hffde075_0 has constraint __cuda >=12 conflicting with __cuda-11.4-0
```
This is telling you the CUDA version currently installed on your machine (`__cuda`: 11.4.0) is
incompatible with the `cuda-version` (12.0) you are trying to install. You will have to ensure the CUDA
version on your machine is greater than or equal to the CUDA version you are trying to install
with conda.
raydouglass marked this conversation as resolved.
Show resolved Hide resolved

### **Docker Issues**
<i class="fas fa-exclamation-triangle"></i> RAPIDS `23.08` brought significant Docker changes. <br/>
To learn more about these changes, please see the [RAPIDS Container README](https://hub.docker.com/r/rapidsai/base){: target="_blank"}. Some key notes below:
Expand Down