ray_template/deployment_scripts/create-env.sh

29 lines
No EOL
683 B
Bash
Executable file

#!/bin/bash
# Display usage
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <conda_environment_name>"
exit 1
fi
# Name of the Conda environment
CONDA_ENV_NAME=$1
# Check if the Conda environment already exists
if conda env list | grep -q "$CONDA_ENV_NAME"; then
echo "Environment '$CONDA_ENV_NAME' already exists."
else
echo "Environment '$CONDA_ENV_NAME' does not exist, creating it."
# Create Conda environment
CONDA_SUBDIR=linux-64 conda env create --name $CONDA_ENV_NAME -f environment.yaml
if [ $? -eq 0 ]; then
echo "Conda environment '$CONDA_ENV_NAME' created successfully."
else
echo "Failed to create Conda environment '$CONDA_ENV_NAME'."
fi
fi