hysts's picture
hysts HF staff
Add files
7a1aaec
raw
history blame contribute delete
No virus
290 Bytes
import shlex
import subprocess
from huggingface_hub import HfApi
api = HfApi()
api.snapshot_download(repo_id="hysts-samples/sample-private-repo", repo_type="space", local_dir=".")
subprocess.run(shlex.split("pip install -r requirements.txt"))
subprocess.run(shlex.split("python app.py"))