Spaces:
Sleeping
Sleeping
File size: 547 Bytes
f033a7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#!/bin/bash
# Defining the environment name
env_name="Chest_Disease"
# Activating the conda environment
source $(conda info --base)/etc/profile.d/conda.sh
conda activate "$env_name"
if [ $? -ne 0 ]; then
echo "Error: Failed to activate the conda environment '$env_name'."
exit 1
fi
echo "Conda environment '$env_name' activated."
# Running the Python script to launch Gradio
python final_project_Gradio_App.py
if [ $? -ne 0 ]; then
echo "Error: Failed to run the Python script."
exit 1
fi
echo "Gradio application is running." |