File size: 343 Bytes
314bc09 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/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 query.py
conda deactivate
echo "Completed." |