File size: 706 Bytes
9131367
 
 
d01071c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9131367
bb198c7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

# 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()