-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathinstall.sh
executable file
·187 lines (153 loc) · 3.89 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
#!/bin/bash
cleanup() {
rm -rf "$TMP" &
}
available() {
command -v "$1" >/dev/null
}
nvidia_lshw() {
lshw -c display -numeric -disable network | grep -q 'vendor: .* \[10DE\]'
}
amd_lshw() {
lshw -c display -numeric -disable network | grep -q 'vendor: .* \[1002\]'
}
download() {
if $local_install; then
cp "$1" "$2"
else
curl --globoff --location --proto-default https -f -o "$2" \
--remote-time --retry 10 --retry-max-time 10 -s "$1"
local bn
bn="$(basename "$1")"
echo "Downloaded $bn"
fi
}
dnf_install() {
if ! available podman; then
$sudo dnf install -y --best podman || true
fi
}
apt_get_install() {
apt-get -y install "$1"
}
apt_install() {
if ! available podman; then
$sudo apt-get update || true
# only install docker if podman can't be
if ! $sudo apt_get_install podman; then
if ! available docker; then
$sudo apt_get_install docker || true
fi
fi
fi
}
install_mac_dependencies() {
if [ "$EUID" -eq 0 ]; then
echo "This script is intended to run as non-root on macOS"
return 1
fi
if ! available "brew"; then
echo "RamaLama requires brew to complete installation. Install brew and add the"
echo "directory containing brew to the PATH before continuing to install RamaLama"
return 2
fi
brew install llama.cpp
}
check_platform() {
if $local_install; then
return 0
fi
if [ "$os" = "Darwin" ]; then
install_mac_dependencies
elif [ "$os" = "Linux" ]; then
if [ "$EUID" -ne 0 ]; then
if ! available sudo; then
error "This script is intended to run as root on Linux"
return 3
fi
sudo="sudo"
fi
if available dnf && ! grep -q ostree= /proc/cmdline; then
dnf_install
elif available apt-get; then
apt_install
fi
else
echo "This script is intended to run on Linux and macOS only"
return 4
fi
return 0
}
setup_ramalama() {
local binfile="ramalama"
local from_file="${binfile}"
local host="https://raw.githubusercontent.com"
local branch="${BRANCH:-s}"
local url="${host}/containers/ramalama/${branch}/bin/${from_file}"
local to_file="$TMP/${from_file}"
if $local_install; then
url="bin/${from_file}"
fi
download "$url" "$to_file"
local ramalama_bin="${1}/${binfile}"
local sharedirs=("/opt/homebrew/share" "/usr/local/share" "/usr/share")
local syspath
for dir in "${sharedirs[@]}"; do
if [ -d "$dir" ]; then
syspath="$dir/ramalama"
break
fi
done
$sudo install -m755 -d "$syspath"
syspath="$syspath/ramalama"
$sudo install -m755 -d "$syspath"
$sudo install -m755 "$to_file" "$ramalama_bin"
local python_files=("cli.py" "huggingface.py" "model.py" "ollama.py" \
"common.py" "__init__.py" "quadlet.py" "kube.py" \
"oci.py" "version.py" "shortnames.py" "toml_parser.py" \
"file.py" "http_client.py" "url.py" "annotations.py" \
"gpu_detector.py" "console.py")
for i in "${python_files[@]}"; do
if $local_install; then
url="ramalama/${i}"
else
url="${host}/containers/ramalama/${branch}/ramalama/${i}"
fi
download "$url" "$to_file"
$sudo install -m755 "$to_file" "${syspath}/${i}"
done
}
main() {
set -e -o pipefail
local local_install="false"
# Parse command line arguments
while [[ $# -gt 0 ]]; do
case "$1" in
-l)
local_install="true"
shift
;;
*)
break
esac
done
local os
os="$(uname -s)"
local sudo=""
check_platform
local bindirs=("/opt/homebrew/bin" "/usr/local/bin" "/usr/bin" "/bin")
local bindir
for bindir in "${bindirs[@]}"; do
if echo "$PATH" | grep -q "$bindir"; then
break
fi
done
if [ -z "$bindir" ]; then
echo "No suitable bindir found in PATH"
exit 5
fi
TMP="$(mktemp -d)"
trap cleanup EXIT
setup_ramalama "$bindir"
}
main "$@"