16 lines
551 B
Markdown
16 lines
551 B
Markdown
# 运行方式
|
||
|
||
```python
|
||
docker pull git.modelhub.org.cn:9443/enginex-hygon/pytorch:2.3.0-ubuntu22.04-dtk24.04.2-py3.10
|
||
# 为以上拉取的docker的镜像ID替换,本镜像为:83714c19d308
|
||
docker run -it --shm-size=64G -v $PWD/mini-omni2:/home/mini-omni2 -v /opt/hyhal:/opt/hyhal:ro --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name omni2 bash
|
||
cd /home/mini-omni2
|
||
pip install -r requirements.txt # requirements.txt
|
||
# 安装ffmpeg
|
||
apt update
|
||
apt-get install ffmpeg
|
||
# 安装CLIP
|
||
cd CLIP
|
||
pip install . #clip==1.0
|
||
```
|