This commit is contained in:
zhousha
2025-12-04 20:17:21 +08:00
parent 4b0dbffd5b
commit 61de0a481b
5 changed files with 50 additions and 1 deletions

12
enginex/stepvideo-t2v.md Normal file
View File

@@ -0,0 +1,12 @@
# 运行方式
```python
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.4.1-ubuntu22.04-dtk25.04-py3.10-fixpy
# 为以上拉取的docker的镜像ID替换
docker run -it --name T2V_test --shm-size=1024G --device=/dev/kfd --device=/dev/dri/ --privileged --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --ulimit memlock=-1:-1 --ipc=host --network host --group-add video -v /opt/hyhal:/opt/hyhal:ro -v $PWD/Step-Video-TI2V_pytorch:/home/Step-Video-T2V_pytorch /bin/bash
cd /home/Step-Video-T2V_pytorch
pip install -e . -i https://mirrors.aliyun.com/pypi/simple/
pip uninstall asyncio
#注意fix.sh里面的xfuser包的位置根据自己安装包的位置自行调整
sh fix.sh
```