We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bb7e10 commit 3afde20Copy full SHA for 3afde20
build/Dockerfile
@@ -155,8 +155,9 @@ ENV PIP_NO_BINARY=mamba-ssm,mamba_ssm
155
# Install from the wheel
156
RUN --mount=type=cache,target=/home/${USER}/.cache/pip,uid=${USER_UID} \
157
python -m pip install --user wheel && \
158
- python -m pip install --user "$(head bdist_name)" && \
159
- python -m pip install --user "$(head bdist_name)[flash-attn]" && \
+ python -m pip install --user "$(head bdist_name)"
+
160
+RUN python -m pip install --user --no-build-isolation "$(head bdist_name)[flash-attn]" && \
161
python -m pip install --user --no-build-isolation "$(head bdist_name)[mamba]"
162
163
# fms_acceleration_peft = PEFT-training, e.g., 4bit QLoRA
0 commit comments