Spaces:
Runtime error
Runtime error
JanuaryDesk
commited on
Commit
•
eade255
1
Parent(s):
a3896d3
debug plotting related failures
Browse files- app.py +3 -0
- requirements.txt +1 -0
app.py
CHANGED
@@ -36,7 +36,10 @@ os.chdir("..")
|
|
36 |
# os.system("pip install git+https://github.com/yiyuezhuo/gradio@cmo_pinned")
|
37 |
|
38 |
import gradio as gr
|
|
|
|
|
39 |
|
|
|
40 |
print(dir(gr))
|
41 |
|
42 |
from cmo_db_inspector import App
|
|
|
36 |
# os.system("pip install git+https://github.com/yiyuezhuo/gradio@cmo_pinned")
|
37 |
|
38 |
import gradio as gr
|
39 |
+
import pandas as pd
|
40 |
+
import plotly
|
41 |
|
42 |
+
print(f"gr.__version__={gr.__version__}, pd.__version__={pd.__version__}, ployly.__version__={plotly.__version__}")
|
43 |
print(dir(gr))
|
44 |
|
45 |
from cmo_db_inspector import App
|
requirements.txt
CHANGED
@@ -1,3 +1,4 @@
|
|
1 |
# gradio @ git+https://github.com/yiyuezhuo/gradio@cmo_pinned
|
2 |
plotly
|
|
|
3 |
cmo_db_inspector @ git+https://github.com/yiyuezhuo/cmo_db_inspector.git
|
|
|
1 |
# gradio @ git+https://github.com/yiyuezhuo/gradio@cmo_pinned
|
2 |
plotly
|
3 |
+
sqlalchemy
|
4 |
cmo_db_inspector @ git+https://github.com/yiyuezhuo/cmo_db_inspector.git
|