forked from entropy-research/Devon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
67 lines (56 loc) · 1.67 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
#!/usr/bin/bash bash
# check if python3 is installed
if ! command -v python3 &> /dev/null
then
echo "Python3 is not installed. Please install it first."
exit 1
fi
# check if node is installed
if ! command -v node &> /dev/null
then
echo "node is not installed. Please install it first."
exit 1
fi
# check if npm is installed
if ! command -v npm &> /dev/null
then
echo "npm is not installed. Please install it first."
exit 1
fi
# 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."
echo "Installing Devon TUI..."
npm install -g devon-tui
# check if devon-tui is installed
if ! command -v devon &> /dev/null
then
echo "Devon TUI is not installed. Please install it manually by running 'npm install -g devon-tui' or 'sudo npm install -g devon-tui'."
exit 1
fi
echo "Devon TUI is installed successfully."
echo "Devon is installed successfully."
echo "Run 'devon' to start the Devon TUI."