Skip to content

Commit

Permalink
Added functionaility to use APT packages (#1164)
Browse files Browse the repository at this point in the history
Co-authored-by: James Wakelim <[email protected]>
  • Loading branch information
andrew-kelly-neutralaiz and JW-NAIz authored Sep 6, 2023
1 parent 0e5abbc commit c15ded4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion install_tool_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
#!/bin/bash

# Update and upgrade apt settings and apps
apt update && apt upgrade -y
xargs apt install -y < /app/requirements_apt.txt

# Run the project's main requirements.txt
pip install -r /app/requirements.txt

# Loop through the tools directories and install their requirements.txt if they exist
for tool in /app/superagi/tools/* /app/superagi/tools/external_tools/* /app/superagi/tools/marketplace_tools/* ; do
# Loop through the tools directories and install their apt_requirements.txt if they exist
if [ -d "$tool" ] && [ -f "$tool/requirements_apt.txt" ]; then
echo "Installing apt requirements for tool: $(basename "$tool")"
xargs apt install -y < "$tool/requirements_apt.txt"
fi
# Loop through the tools directories and install their requirements.txt if they exist
if [ -d "$tool" ] && [ -f "$tool/requirements.txt" ]; then
echo "Installing requirements for tool: $(basename "$tool")"
pip install -r "$tool/requirements.txt"
Expand Down

0 comments on commit c15ded4

Please sign in to comment.