Building_area / build.sh
Pavan2k4's picture
Create build.sh
dbc0199 verified
raw
history blame
232 Bytes
#!/bin/bash
set -e
# Update package list
sudo apt update
# Install required packages
sudo apt install -y libpq-dev gdal-bin libgdal-dev
# Your additional installation steps can go here
echo "Build script completed successfully."