Skip to content

Commit 54cda8a

Browse files
sage from gh
1 parent d994c6c commit 54cda8a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

Runpod-Docker/install-python-deps.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ run_pip_step "[pip] requirements.txt" "${PIP_LOG_DIR}/02-requirements.log" \
6868
echo "[step 5/6] Installing SageAttention 2.2.0"
6969
run_pip_step "[pip] setuptools for sage" "${PIP_LOG_DIR}/03-setuptools.log" \
7070
install --no-cache-dir -v --force-reinstall "setuptools<=75.8.2"
71-
run_pip_step "[pip] sageattention" "${PIP_LOG_DIR}/04-sageattention.log" \
72-
install --no-cache-dir -v --no-build-isolation --force-reinstall sageattention==2.2.0
71+
run_pip_step "[pip] sageattention from git tag v2.2.0" "${PIP_LOG_DIR}/04-sageattention.log" \
72+
install --no-cache-dir -v --no-build-isolation --force-reinstall \
73+
"git+https://github.com/thu-ml/SageAttention.git@v2.2.0"
7374

7475
echo "[step 6/6] Installing Runpod gradio override"
7576
run_pip_step "[pip] gradio override" "${PIP_LOG_DIR}/05-gradio.log" \

Runpod-Docker/update-wan2gp.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ print("CUDA available:", torch.cuda.is_available())
9898
PY
9999
python3 -m pip install --no-cache-dir -r requirements.txt
100100
python3 -m pip install --no-cache-dir --force-reinstall "setuptools<=75.8.2"
101-
python3 -m pip install --no-cache-dir --no-build-isolation --force-reinstall sageattention==2.2.0
101+
python3 -m pip install --no-cache-dir --no-build-isolation --force-reinstall \
102+
"git+https://github.com/thu-ml/SageAttention.git@v2.2.0"
102103
python3 -m pip install --no-cache-dir gradio==5.35.0
103104
echo "Dependencies updated."
104105

0 commit comments

Comments
 (0)