Update simple_app.py
Browse files- simple_app.py +9 -0
simple_app.py
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
import re
|
| 3 |
import subprocess
|
|
|
|
| 1 |
+
'''
|
| 2 |
+
sudo apt-get update && sudo apt-get install ffmpeg git-lfs
|
| 3 |
+
conda install python=3.10
|
| 4 |
+
pip install ipykernel
|
| 5 |
+
git clone https://huggingface.co/spaces/svjack/Wan2.1 && cd Wan2.1
|
| 6 |
+
pip install -r requirements.txt
|
| 7 |
+
python simple_app.py
|
| 8 |
+
'''
|
| 9 |
+
|
| 10 |
import gradio as gr
|
| 11 |
import re
|
| 12 |
import subprocess
|