-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.sh
51 lines (38 loc) · 1 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
# Define global variables
ENV_NAME="sbtm_env"
OS_NAME="$(uname -s)"
HARDWARE_NAME="$(uname -m)"
echo "Detected OS: $OS_NAME, Hardware: $HARDWARE_NAME."
echo
# Function to check if Conda is installed
check_conda(){
if ! command -V conda &> /dev/null; then
echo "Conda could not be found. Please install Anaconda before
continuing. https://www.anaconda.com/download"
exit 1
fi
}
# Creating a new Conda environment and activating it
create_conda_env(){
echo "Creating a new Conda environment..."
conda create --name "$ENV_NAME" python=3.10 -y
echo
}
# Global variable for conda
ENV_BIN_PATH="$(conda info --base)/envs/$ENV_NAME/bin"
# Installing Python packages from requirements.txt
install_requirements(){
echo "Installing requirements from requirements.txt in the conda
environment $ENV_NAME..."
"$ENV_BIN_PATH/pip" install -r requirements.txt
echo
}
# Main script execution
main(){
check_conda
create_conda_env
install_requirements
echo "Setup complete."
}
main