-
Notifications
You must be signed in to change notification settings - Fork 263
/
build_ui.sh
41 lines (31 loc) · 913 Bytes
/
build_ui.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
#!/bin/bash
# Install the UI
cd electron
yarn install
# check if pip3 is installed
if ! command -v pip3 &> /dev/null
then
echo "Pip3 is not installed. Please install it first."
exit 1
fi
# check if pipx is installed
if ! command -v pipx &> /dev/null
then
# if OS is macOS, use brew to install pipx
if [ "$(uname)" == "Darwin" ]; then
echo "Pipx is not installed. Installing it using brew..."
brew install pipx
else
echo "Pipx is not installed. Please install it first. Installation instructions: https://pipx.pypa.io/stable/installation/"
exit 1
fi
fi
echo "Installing Devon backend..."
pipx install devon_agent
if ! command -v devon_agent --help &> /dev/null
then
echo "Devon Backend is not installed. Please install it manually by running 'pipx install devon_agent'"
exit 1
fi
echo "Devon Backend is installed successfully."
yarn start