How to compile SAGA GIS from source on Ubuntu 24.04.3 LTS

With reference to the source 'Compiling SAGA on Linux'. https://sourceforge.net/p/saga-gis/wiki/Compiling%20SAGA%20on%20Linux/ You can also simply run these modules in QGIS but you would miss out on some excellent advantages such as having multiple map windows synchronized and a simple interface. Current 'Debian/Ubuntu' libraries only go up to version 9.2.0. This will install the latest version (currently 9.10.0). 1. ~$ sudo apt install libwxgtk3.2-dev libgdal-dev libproj-dev libpq-dev libpdal-dev libopencv-dev libhpdf-dev unixodbc-dev (You may see this error:) 'E: Unable to locate package libpdal-dev' this does not prevent continuation of compilation process. 2. ~$ sudo apt-get install g++ cmake cmake-qt-gui make libtool git 3. ~$ sudo apt install libwxgtk3.2-dev 4. ~$ sudo apt install libcurl4-openssl-dev 5. ~$ sudo apt install g++ make cmake git swig python3 python3-dev python-dev-is-python3 6. ~$ sudo mkdir /home/devel 7. ~$ cd /home/devel 8. ~$ sudo git ...