merligus's picture
run update
5a74d6d
raw
history blame
341 Bytes
#!/bin/bash
# Path to the conda executable
CONDA_PATH=$(which conda)
# Check if conda is installed
if [ -z "$CONDA_PATH" ]; then
echo "Conda could not be found. Please install conda first."
exit
fi
# Initialize conda
eval "$($CONDA_PATH shell.bash hook)"
conda activate specialist
python app.py
conda deactivate
echo "Completed."