Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Manamama
/
ml-talking-face-1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Manamama
commited on
Oct 31, 2022
Commit
289b206
·
1 Parent(s):
6b3eca4
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
CHANGED
Viewed
@@ -1,5 +1,9 @@
1
import gradio as gr
2
3
!whoami
4
!apt install neofetch
5
1
import gradio as gr
2
3
+
import os
4
+
myCmd = os.popen('ls -la').read()
5
+
print(myCmd)
6
+
7
!whoami
8
!apt install neofetch
9