Skip to content

Commit

Permalink
Fix for install script.
Browse files Browse the repository at this point in the history
  • Loading branch information
tblock79 committed Nov 1, 2024
1 parent 6848e1f commit 13741b0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,11 @@ install_packages() {
echo "## Installing Linux packages..."
sudo apt-get update
sudo apt-get install -y build-essential wget git dcmtk jq inetutils-ping sshpass rsync postgresql postgresql-contrib libpq-dev git-lfs python3-wheel python3-dev python3 python3-venv sendmail libqt5core5a redis
if [ $UBUNTU_VERSION == "24.04" ]; then
sudo apt-get install -y libqt6core6t64
else
sudo apt-get install -y libqt5core5a
fi
}

install_dependencies() {
Expand Down

0 comments on commit 13741b0

Please sign in to comment.