Spaces:
Sleeping
Sleeping
File size: 285 Bytes
4ded330 |
1 2 3 4 5 6 7 8 9 10 |
# backend/check_env.py
import sys
import gradio
print("--- Environment Diagnostics ---")
print(f"Python Executable Path: {sys.executable}")
print(f"Gradio Library Version: {gradio.__version__}")
print(f"Gradio Library Path: {gradio.__file__}")
print("---------------------------")
|