复现U-Mamba

一边复现一边更新吧

复现U-Mamba

环境安装

复现U-Mamba_第1张图片

出错步骤

**步骤:**pip install causal-conv1d==1.1.1
错误:ERROR: Could not build wheels for causal-conv1d, which is required to install pyproject.toml-based projects
解决办法:下载之后直接安装,如果想要最新版本的,第三步可以忽略
复现U-Mamba_第2张图片
**步骤:**pip install mamba-ssm
错误:Guessing wheel URL: https://github.com/state-spaces/mamba/releases/download/v1.1.1/mamba_ssm-1.1.1+cu118torch2.1cxx11abiFALSE-cp310-cp310-linux_x86_64.whl
error:
[end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for mamba-ssm
Running setup.py clean for mamba-ssm
Failed to build mamba-ssm
ERROR: Could not build wheels for mamba-ssm, which is required to install pyproject.toml-based projects
解决办法:点击错误里面给出的网址,下载whl文件,然后使用pip install 路径+文件名安装

你可能感兴趣的:(python)