diff --git a/install/install.md b/install/install.md
index ae63e0f0d68..401063e6474 100644
--- a/install/install.md
+++ b/install/install.md
@@ -59,6 +59,18 @@ 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
+ A `__cuda` constraint conflict occurs:
+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 means the CUDA driver currently installed on your machine (e.g. `__cuda`: 11.4.0) is
+incompatible with the `cuda-version` (12.0) you are trying to install. You will have to ensure the [CUDA
+driver on your machine supports the CUDA version](#system-req) you are trying to install with conda.
+
+If conda has incorrectly identified the CUDA driver, you can [override by setting the `CONDA_OVERRIDE_CUDA`](https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-virtual.html#overriding-detected-packages){: target="_blank"} environment variable.
+
### **Docker Issues**
RAPIDS `23.08` brought significant Docker changes.
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: