Spaces:
Runtime error
Runtime error
# https://discuss.huggingface.co/t/how-to-install-a-specific-version-of-gradio-in-spaces/13552 | |
import os | |
def p(command): | |
print("EXEC: " + command) | |
os.system(command) | |
p("wget -qO- https://get.pnpm.io/install.sh | sh -") | |
p("git clone https://github.com/yiyuezhuo/gradio --branch cmo_pinned") | |
os.chdir("gradio") | |
p("pnpm i --frozen-lockfile") | |
p("pnpm build") | |
p("pip uninstall -y gradio") | |
p("pip install -e .") | |
os.chdir("..") | |
# os.system("pip uninstall -y gradio") | |
# os.system("pip install git+https://github.com/yiyuezhuo/gradio@cmo_pinned") | |
import gradio as gr | |
from cmo_db_inspector import App | |
from pathlib import Path | |
cmo_db_root = Path("DB") | |
app = App(cmo_db_root).create() | |
app.demo.launch() | |