-
Notifications
You must be signed in to change notification settings - Fork 713
/
install.sh
executable file
·299 lines (255 loc) · 10 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
291
292
293
294
295
296
297
298
299
#!/bin/sh
# Function to detect OS and architecture
get_os_arch() {
os=$(uname -s | tr '[:upper:]' '[:lower:]')
arch=$(uname -m)
case "$arch" in
x86_64) arch="x86_64" ;;
aarch64 | arm64)
# Only allow arm64 on macOS
if [ "$os" != "darwin" ]; then
echo >&2 "error: arm64/aarch64 is only supported on macOS"
exit 1
fi
arch="aarch64"
;;
*)
echo >&2 "error: unsupported architecture: $arch"
exit 1
;;
esac
case "$os" in
darwin)
echo "apple-darwin" "$arch"
;;
linux)
# Block Linux arm64
if [ "$arch" = "aarch64" ]; then
echo >&2 "error: Linux arm64/aarch64 is not supported yet"
exit 1
fi
echo "unknown-linux-gnu" "$arch"
;;
*)
echo >&2 "error: unsupported operating system: $os"
exit 1
;;
esac
}
echo "fetching latest version from github..."
LATEST_RELEASE=$(curl -s https://api.github.com/repos/mediar-ai/screenpipe/releases/latest)
VERSION=$(echo "$LATEST_RELEASE" | grep -o '"tag_name": "v[^"]*"' | cut -d'"' -f4 | sed 's/^v//')
if [ -z "$VERSION" ]; then
echo "failed to fetch latest version"
exit 1
fi
echo "latest version: $VERSION"
if ! OS_ARCH=$(get_os_arch); then
# get_os_arch already printed the error message
exit 1
fi
os=$(echo "$OS_ARCH" | cut -d' ' -f1)
arch=$(echo "$OS_ARCH" | cut -d' ' -f2)
FILENAME="screenpipe-${VERSION}-${arch}-${os}.tar.gz"
URL="https://github.com/mediar-ai/screenpipe/releases/download/v${VERSION}/${FILENAME}"
TMP_DIR=$(mktemp -d)
cd "$TMP_DIR" || exit 1
# Check dependencies on Linux
if [ "$os" = "unknown-linux-gnu" ]; then
# Check for required libraries
NEED_ALSA=0
NEED_FFMPEG=0
if ! ldconfig -p | grep -q "libasound.so.2" >/dev/null 2>&1; then
NEED_ALSA=1
fi
if ! command -v ffmpeg >/dev/null 2>&1; then
NEED_FFMPEG=1
fi
# Install missing dependencies based on package manager
if [ $NEED_ALSA -eq 1 ] || [ $NEED_FFMPEG -eq 1 ]; then
if command -v apt-get >/dev/null 2>&1; then
# Ubuntu/Debian
PKGS=""
[ $NEED_ALSA -eq 1 ] && PKGS="$PKGS libasound2-dev" && echo "installing libasound2-dev..."
[ $NEED_FFMPEG -eq 1 ] && PKGS="$PKGS ffmpeg" && echo "installing ffmpeg..."
sudo apt-get install -qq -y $PKGS >/dev/null 2>&1
elif command -v dnf >/dev/null 2>&1; then
# Fedora/RHEL
PKGS=""
[ $NEED_ALSA -eq 1 ] && PKGS="$PKGS alsa-lib" && echo "installing alsa-lib..."
[ $NEED_FFMPEG -eq 1 ] && PKGS="$PKGS ffmpeg" && echo "installing ffmpeg..."
sudo dnf install -q -y $PKGS >/dev/null 2>&1
elif command -v pacman >/dev/null 2>&1; then
# Arch Linux
PKGS=""
[ $NEED_ALSA -eq 1 ] && PKGS="$PKGS alsa-lib" && echo "installing alsa-lib..."
[ $NEED_FFMPEG -eq 1 ] && PKGS="$PKGS ffmpeg" && echo "installing ffmpeg..."
sudo pacman -S --noconfirm --quiet $PKGS >/dev/null 2>&1
elif command -v zypper >/dev/null 2>&1; then
# OpenSUSE
PKGS=""
[ $NEED_ALSA -eq 1 ] && PKGS="$PKGS alsa-lib" && echo "installing alsa-lib..."
[ $NEED_FFMPEG -eq 1 ] && PKGS="$PKGS ffmpeg" && echo "installing ffmpeg..."
sudo zypper --quiet --non-interactive install $PKGS >/dev/null 2>&1
fi
fi
fi
# Check macOS dependencies
if [ "$(uname)" = "Darwin" ]; then
# Check if Xcode tools are installed
xcode-select -p &>/dev/null
if [ $? -ne 0 ]; then
echo "command line tools for xcode not found. installing from softwareupdate…"
touch /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress
PROD=$(softwareupdate -l | grep "\*.*Command Line" | tail -n 1 | sed 's/^[^C]* //')
softwareupdate -i "$PROD" --verbose
else
echo "command line tools for xcode have been installed."
fi
# Check if ffmpeg is installed
if ! command -v ffmpeg >/dev/null 2>&1; then
echo "installing ffmpeg..."
if [ "$arch" = "aarch64" ]; then
FFMPEG_URL="https://ffmpeg.martin-riedl.de/redirect/latest/macos/arm64/release/ffmpeg.zip"
else
FFMPEG_URL="https://ffmpeg.martin-riedl.de/redirect/latest/macos/amd64/release/ffmpeg.zip"
fi
echo "downloading ffmpeg from: $FFMPEG_URL"
if ! curl -sL "$FFMPEG_URL" -o ffmpeg.zip; then
echo "failed to download ffmpeg"
exit 1
fi
if ! unzip -q ffmpeg.zip; then
echo "failed to extract ffmpeg"
exit 1
fi
rm ffmpeg.zip
# Verify code signing on macOS
echo "verifying code signature..."
if ! codesign -v ./ffmpeg 2>/dev/null; then
echo "warning: binary is not signed or signature is invalid"
read -p "do you want to continue anyway? (y/N) " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "installation aborted"
exit 1
fi
fi
# Verify the binary runs and check version
echo "verifying binary..."
if ! FFMPEG_VERSION=$(./ffmpeg -version | head -n1); then
echo "binary verification failed"
exit 1
fi
echo "detected version: $FFMPEG_VERSION"
# Move to local bin
mkdir -p "$HOME/.local/bin"
mv ffmpeg "$HOME/.local/bin/"
chmod +x "$HOME/.local/bin/ffmpeg"
# Remove quarantine attribute
xattr -d com.apple.quarantine "$HOME/.local/bin/ffmpeg" 2>/dev/null || true
echo "ffmpeg installed successfully"
fi
fi
# Install Bun if not present
if ! command -v bun >/dev/null 2>&1; then
echo "installing bun..."
if [ "$(uname)" = "Darwin" ] || [ "$os" = "unknown-linux-gnu" ]; then
curl -fsSL https://bun.sh/install | bash
# Source the updated profile to make bun available
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
elif [ -f "$HOME/.zshrc" ]; then
. "$HOME/.zshrc"
fi
echo "bun installed successfully"
else
echo "error: unsupported operating system for bun installation"
exit 1
fi
fi
echo "downloading screenpipe v${VERSION} for ${arch}-${os}..."
# Add debug output for download
echo "downloading from url: $URL"
if ! curl -sL "$URL" -o "$FILENAME"; then
echo "download failed"
exit 1
fi
# Verify download
if ! gzip -t "$FILENAME" 2>/dev/null; then
echo "downloaded file is not in valid gzip format"
exit 1
fi
echo "extracting..."
if ! tar xzf "$FILENAME"; then
echo "extraction failed"
exit 1
fi
echo "installing..."
INSTALL_DIR="$HOME/.local/screenpipe"
# Remove existing installation
rm -rf "$INSTALL_DIR"
# Create install directory
if ! mkdir -p "$INSTALL_DIR/screenpipe-vision/lib"; then
echo "Failed to create install directory"
exit 1
fi
# Copy binary
if ! cp bin/screenpipe "$INSTALL_DIR/"; then
echo "Failed to copy binary"
exit 1
fi
# Remove quarantine attributes on macOS
if [ "$(uname)" = "Darwin" ]; then
echo "removing quarantine attributes..."
xattr -r -d com.apple.quarantine "$INSTALL_DIR" 2>/dev/null || true
fi
# Create symlink in user's bin directory
mkdir -p "$HOME/.local/bin"
if ! ln -sf "$INSTALL_DIR/screenpipe" "$HOME/.local/bin/screenpipe"; then
echo "Failed to create symlink"
exit 1
fi
echo "adding ~/.local/bin to path..."
# Detect shell and update appropriate config file
SHELL_CONFIG=""
case "$SHELL" in
*/zsh)
SHELL_CONFIG="$HOME/.zshrc"
;;
*/bash)
SHELL_CONFIG="$HOME/.bashrc"
;;
esac
echo "shell_config: $SHELL_CONFIG"
if [ -n "$SHELL_CONFIG" ]; then
echo "" >>"$SHELL_CONFIG"
echo 'export PATH="$HOME/.local/bin:$PATH"' >>"$SHELL_CONFIG"
echo "Please restart your terminal or run: source $SHELL_CONFIG"
else
echo "Please add ~/.local/bin to your PATH manually"
fi
# Cleanup
cd || exit 1
rm -rf "$TMP_DIR"
echo "
███████╗ ██████╗██████╗ ███████╗███████╗███╗ ██╗██████╗ ██╗██████╗ ███████╗
██╔════╝██╔════╝██╔══██╗██╔════╝██╔════╝████╗ ██║██╔══██╗██║██╔══██╗██╔════╝
███████╗██║ ██████╔╝█████╗ █████╗ ██╔██╗ ██║██████╔╝██║██████╔╝█████╗
╚════██║██║ ██╔══██╗██╔══╝ ██╔══╝ ██║╚██╗██║██╔═══╝ ██║██╔═══╝ ██╔══╝
███████║╚██████╗██║ ██║███████╗███████╗██║ ╚████║██║ ██║██║ ███████╗
╚══════╝ ╚═════╝╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚══════╝
"
echo "installation complete! 🚀"
echo "to get started:"
echo "1. restart your terminal or run: source $SHELL_CONFIG"
echo "2. run: screenpipe"
echo "3. allow permissions on macos (screen, mic) if needed"
echo ""
echo "╭──────────────────────────────────────────╮"
echo "│ join our discord: │"
echo "│ --> https://discord.gg/dU9EBuw7Uq │"
echo "│ │"
echo "│ check the docs: │"
echo "│ --> https://docs.screenpi.pe │"
echo "╰──────────────────────────────────────────╯"