Spaces:
Sleeping
Sleeping
print("===gr__version__===")
Browse filesprint(gr.__version__)
os.system("pip uninstall -y gradio")
os.system("pip install gradio==4.24.0")
print("===gr__version__after===")
print(gr.__version__)
app.py
CHANGED
@@ -44,6 +44,12 @@ print(f"is_env_local: {is_env_local}")
|
|
44 |
print("===gr__version__===")
|
45 |
print(gr.__version__)
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
if is_env_local:
|
49 |
with open("local_config.json") as f:
|
|
|
44 |
print("===gr__version__===")
|
45 |
print(gr.__version__)
|
46 |
|
47 |
+
os.system("pip uninstall -y gradio")
|
48 |
+
os.system("pip install gradio==4.24.0")
|
49 |
+
|
50 |
+
print("===gr__version__after===")
|
51 |
+
print(gr.__version__)
|
52 |
+
|
53 |
|
54 |
if is_env_local:
|
55 |
with open("local_config.json") as f:
|