Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
0x90e
/
ESRGAN-MANGA
like
12
Runtime error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
b75b0aa
ESRGAN-MANGA
/
run_cmd.py
0x90e
Test install pngquant
ec4b0ec
about 2 years ago
raw
Copy download link
history
blame
Safe
191 Bytes
from
subprocess
import
call
import
sys
def
run_cmd
(
command
):
try
:
call(command, shell=
True
)
except
KeyboardInterrupt:
print
(
"Process interrupted"
)
sys.exit(
1
)