mamba
mamba copied to clipboard
Install Failed
Installing causal-conv1d and mamba-ssm failed.
I don't have enough information. What OS are you using?
post the full stack trace. But kinda looks like you're missing nvcc
I had the same issue, bare_metal_version
is only defined in the setup.py
if the CUDA_HOME environment variable is set, but the 11.8 version check is outside of that if block:
https://github.com/state-spaces/mamba/blob/009bec5ee37f586844a3fc89c040a9c1a9d8badf/setup.py#L100-L113
CUDA 11.8 was installed on my machine, so once I set the CUDA_HOME variable I could install the package. Maybe an error message about CUDA_HOME would be helpful?
I had the same issue,
bare_metal_version
is only defined in thesetup.py
if the CUDA_HOME environment variable is set, but the 11.8 version check is outside of that if block:https://github.com/state-spaces/mamba/blob/009bec5ee37f586844a3fc89c040a9c1a9d8badf/setup.py#L100-L113
CUDA 11.8 was installed on my machine, so once I set the CUDA_HOME variable I could install the package. Maybe an error message about CUDA_HOME would be helpful?
how do you set the home variable? I'm having this same issue. Thanks in advance
It depends on the location and version of your cuda installation, for me it was this:
export CUDA_HOME=/usr/local/cuda-11.8
Has this been solved? Thanks!