generated from ThalesGroup/template-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·290 lines (253 loc) · 10.2 KB
/
install.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#!/bin/bash
set -e
set -o pipefail
# ================================
# Initial Setup
# ================================
LOG_DIR="$HOME/log/install_logs"
mkdir -p "$LOG_DIR"
LOG_FILE="$LOG_DIR/install_$(date +%Y%m%d_%H%M%S).log"
exec > >(tee -a "$LOG_FILE") 2>&1
# Colors for output
RED='\033[1;31m'
GREEN='\033[1;32m'
BLUE='\033[1;34m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Prevent Running as Root
if [[ "$EUID" -eq 0 ]]; then
echo -e "${RED}Error: This script should not be run as root. Please run as a regular user.${NC}"
exit 1
fi
# Remove unwanted files/directories
find . \( -name ".venv" -o -name "uv.lock" -o -name "build" -o -name "dist" -o -name "*egg-info" \) -exec rm -rf {} +
# ================================
# Command-Line Arguments
# ================================
usage() {
echo "Usage: $0 --cluster-credentials <user:password> --openai-api-key <api-key> [--install-path <path>]"
exit 1
}
PYTHON_VERSION="3.12"
AGI_INSTALL_PATH="$(realpath '.')"
cluster_credentials=""
openai_api_key=""
while [[ "$#" -gt 0 ]]; do
case $1 in
--cluster-credentials) cluster_credentials="$2"; shift 2;;
--openai-api-key) openai_api_key="$2"; shift 2;;
--install-path) AGI_INSTALL_PATH=$(realpath "$2"); shift 2;;
*) echo -e "${RED}Unknown option: $1${NC}"; usage;;
esac
done
[[ -z "$openai_api_key" ]] && echo -e "${RED}Missing mandatory parameter: --openai-api-key${NC}" && usage
# ================================
# Pre-check Functions
# ================================
check_internet() {
echo -e "${BLUE}Checking internet connectivity...${NC}"
curl -s --head --fail https://www.google.com >/dev/null || {
echo -e "${RED}No internet connection detected. Aborting.${NC}"
exit 1
}
echo -e "${GREEN}Internet connection is OK.${NC}"
}
set_locale() {
echo -e "${BLUE}Setting locale...${NC}"
if ! locale -a | grep -q "en_US.utf8"; then
echo -e "${YELLOW}Locale en_US.UTF-8 not found. Generating...${NC}"
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
sudo locale-gen en_US.UTF-8 || { echo -e "${RED}Error generating locale. Please generate it manually.${NC}"; exit 1; }
echo -e "${GREEN}Locale en_US.UTF-8 generated successfully.${NC}"
elif [[ "$OSTYPE" == "darwin"* ]]; then
echo -e "${YELLOW}macOS typically includes en_US.UTF-8 by default. Skipping locale generation.${NC}"
else
echo -e "${RED}Unsupported OS for locale generation.${NC}"
exit 1
fi
else
echo -e "${GREEN}Locale en_US.UTF-8 is already available.${NC}"
fi
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
}
install_dependencies() {
echo -e "${BLUE}Step: Installing system dependencies...${NC}"
read -rp "Do you want to install system dependencies? (y/N): " confirm
[[ "$confirm" =~ ^[Yy]$ ]] || { echo -e "${YELLOW}Skipping dependency installation.${NC}"; return; }
if ! command -v uv > /dev/null 2>&1; then
echo -e "${GREEN}Installing uv...${NC}"
curl -LsSf https://astral.sh/uv/install.sh | sh
# TODO: check for MacOS
source "$HOME/.local/bin/env"
fi
if command -v apt >/dev/null 2>&1; then
echo -e "${BLUE}Detected apt package manager (Linux).${NC}"
sudo apt update
sudo apt install -y build-essential curl wget unzip \
software-properties-common libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev libxml2-dev \
liblzma-dev llvm tk-dev p7zip-full libffi-dev
elif command -v dnf >/dev/null 2>&1; then
echo -e "${BLUE}Detected dnf package manager (Linux).${NC}"
sudo dnf install -y @development-tools wget curl unzip \
openssl-devel zlib-devel ncurses-devel bzip2-devel \
readline-devel sqlite-devel libxml2-devel xz-devel \
libffi-devel gdbm-devel nss-devel
elif command -v brew >/dev/null 2>&1; then
echo -e "${BLUE}Detected Homebrew (macOS).${NC}"
brew install wget curl unzip openssl readline sqlite libxml2 xz
brew upgrade && brew cleanup
else
echo -e "${RED}No supported package manager found. Please install dependencies manually.${NC}"
exit 1
fi
}
choose_python_version() {
echo -e "${BLUE}Choosing Python version...${NC}"
available_python_versions=$(uv python list | grep $PYTHON_VERSION)
python_array=()
while IFS= read -r line; do
python_array+=("$line")
done <<< "$available_python_versions"
for idx in "${!python_array[@]}"; do
if [[ "${python_array[$idx]}" == *"$PYTHON_VERSION"* ]]; then
echo -e "${GREEN}$((idx + 1)) - ${python_array[$idx]}${NC}"
else
echo -e "$((idx + 1)) - ${python_array[$idx]}"
fi
done
while true; do
read -rp "Enter the number of the Python version you want to use (default: 1) " selection
if [[ -z "$selection" ]]; then
selection=1
fi
if [[ $selection =~ ^[0-9]+$ ]] && (( selection >= 1 && selection <= ${#python_array[@]} )); then
chosen_python=$(echo "${python_array[$((selection - 1))]}" | cut -d' ' -f1)
break
else
echo "Invalid selection. Please try again."
fi
done
installed_pythons=$(uv python list --only-installed | cut -d' ' -f1)
if ! echo "$installed_pythons" | grep -q "$chosen_python"; then
echo -e "${YELLOW}Installing $chosen_python...${NC}"
uv python install "$chosen_python"
echo -e "${GREEN}Python version ($chosen_python) is now installed.${NC}"
else
echo -e "${GREEN}Python version ($chosen_python) is already installed.${NC}"
fi
export PYTHON_VERSION=$(echo "$chosen_python" | cut -d '-' -f2)
}
backup_existing_project() {
# Determine the absolute path of the source directory
EXISTING_PROJECT=$(realpath "$(pwd)")
EXISTING_PROJECT_SRC="$EXISTING_PROJECT/src"
mkdir -p "$HOME/.local/share/agilab"
echo "$EXISTING_PROJECT_SRC" > "$HOME/.local/share/agilab/.agi-path"
echo -e "${GREEN}Installation root path has been exported as AGIROOT.${NC}"
echo 'uv run --project "$AGI_INSTALL_PATH/fwk/core/managers" python "$AGI_INSTALL_PATH/zip-agi.py" --dir2zip "$AGI_INSTALL_PATH" --zipfile "$backup_file"';
# Backup existing project if a valid project directory exists
if [[ -d "$AGI_INSTALL_PATH" && -f "$EXISTING_PROJECT/zip-agi.py" && "$AGI_INSTALL_PATH" != "$EXISTING_PROJECT" ]]; then
echo -e "${YELLOW}Existing project found at $AGI_INSTALL_PATH with zip-agi.py present.${NC}"
backup_file="${AGI_INSTALL_PATH}_backup_$(date +%Y%m%d-%H%M%S).zip"
echo -e "${YELLOW}Creating backup: $backup_file${NC}"
if uv run --project "$AGI_INSTALL_PATH/fwk/core/managers" python "$AGI_INSTALL_PATH/zip-agi.py" --dir2zip "$AGI_INSTALL_PATH" --zipfile "$backup_file"; then
echo -e "${GREEN}Backup created successfully at $backup_file.${NC}"
echo -e "${YELLOW}Removing existing project directory...${NC}"
rm -ri "$AGI_INSTALL_PATH"
else
echo -e "${RED}ERROR: Backup failed. Switching to fallback backup strategy...${NC}"
if zip -r "$backup_file" "$AGI_INSTALL_PATH"; then
echo -e "${YELLOW}Fallback backup created at $backup_file.${NC}"
echo -e "${YELLOW}Removing existing project directory...${NC}"
rm -ri "$AGI_INSTALL_PATH"
else
echo -e "${RED}Failed to create backup using fallback strategy.${NC}"
exit 1
fi
fi
else
echo -e "${YELLOW}No valid existing project found or install dir is same as current directory. Skipping backup.${NC}"
fi
}
copy_project_files() {
if [[ "$AGI_INSTALL_PATH" != "$(pwd)" ]]; then
if [[ -d "$(pwd)/src" ]]; then
echo -e "${BLUE}Copying project files to install directory...${NC}"
mkdir -p "$AGI_INSTALL_PATH"
rsync -a "$(pwd)/" "$AGI_INSTALL_PATH/"
else
echo -e "${RED}Source directory 'src' not found. Exiting.${NC}"
exit 1
fi
else
echo "Using current directory as install directory; no copy needed."
fi
}
update_environment() {
ENV_FILE="$HOME/.local/share/agilab/.env"
if [[ -f "$ENV_FILE" ]]; then
rm "$ENV_FILE"
fi
mkdir -p "$(dirname "$ENV_FILE")"
{
echo "OPENAI_API_KEY=\"$openai_api_key\""
echo "CLUSTER_CREDENTIALS=\"$cluster_credentials\""
echo "AGI_PYTHON_VERSION=\"$PYTHON_VERSION\""
} > "$ENV_FILE"
echo -e "${GREEN}Environment updated in $ENV_FILE${NC}"
}
install_framework_apps() {
framework_dir="$AGI_INSTALL_PATH/src/fwk"
apps_dir="$AGI_INSTALL_PATH/src/apps"
chmod +x "$framework_dir/install.sh" "$apps_dir/install.sh"
echo -e "${BLUE}Installing Framework...${NC}"
pushd "$framework_dir" > /dev/null
./install.sh "$framework_dir"
popd > /dev/null
echo -e "${BLUE}Installing Apps...${NC}"
pushd "$apps_dir" > /dev/null
./install.sh "$apps_dir" "1"
popd > /dev/null
}
write_env_values() {
shared_env="$HOME/.local/share/agilab/.env"
agilab_env="$HOME/.agilab/.env"
if [[ ! -f "$shared_env" ]]; then
echo -e "${RED}Error: $shared_env does not exist.${NC}"
return 1
fi
# # Read the shared .env file line by line
# while IFS='=' read -r key value || [[ -n "$key" ]]; do
# # Skip empty lines and comments
# [[ -z "$key" || "$key" =~ ^# ]] && continue
#
# # Check if the key exists in the agilab_env file
# if grep -q "^$key=" "$agilab_env"; then
# # If the value is different, update it
# current_value=$(grep "^$key=" "$agilab_env" | cut -d '=' -f2-)
# if [[ "$current_value" != "$value" ]]; then
# sed -i "s|^$key=.*|$key=$value|" "$agilab_env"
# fi
# else
# # Append the new key-value pair
# echo "$key=$value" >> "$agilab_env"
# fi
# done < "$shared_env"
cat "$shared_env" >> "$agilab_env"
echo -e "${GREEN}.env file updated.${NC}"
}
# ================================
# Script Execution
# ================================
check_internet
set_locale
install_dependencies
choose_python_version
backup_existing_project
copy_project_files
update_environment
install_framework_apps
write_env_values
echo -e "${GREEN}Installation complete!${NC}"