Download
Current Release
2023-05-10 gdal-3.7.0.tar.gz 3.7.0 Release Notes (3.7.0 md5)
Past Releases
2023-04-21 gdal-3.6.4.tar.gz 3.6.4 Release Notes (3.6.4 md5)
2023-03-13 gdal-3.6.3.tar.gz 3.6.3 Release Notes (3.6.3 md5)
2023-01-05 gdal-3.6.2.tar.gz 3.6.2 Release Notes (3.6.2 md5)
2022-12-11 gdal-3.6.1.tar.gz 3.6.1 Release Notes (3.6.1 md5)
2022-11-06 3.6.0 Release Notes Warning: this version has been official retracted and superseded per 3.6.1
2022-10-21 gdal-3.5.3.tar.gz 3.5.3 Release Notes (3.5.3 md5)
2022-09-12 gdal-3.5.2.tar.gz 3.5.2 Release Notes (3.5.2 md5)
2022-07-06 gdal-3.5.1.tar.gz 3.5.1 Release Notes (3.5.1 md5)
2022-05-13 gdal-3.5.0.tar.gz 3.5.0 Release Notes (3.5.0 md5)
2022-04-22 gdal-3.4.3.tar.gz 3.4.3 Release Notes (3.4.3 md5)
2022-03-08 gdal-3.4.2.tar.gz 3.4.2 Release Notes (3.4.2 md5)
2021-12-27 gdal-3.4.1.tar.gz 3.4.1 Release Notes (3.4.1 md5)
2021-11-08 gdal-3.4.0.tar.gz 3.4.0 Release Notes (3.4.0 md5)
2021-10-29 gdal-3.3.3.tar.gz 3.3.3 Release Notes (3.3.3 md5)
2021-09-01 gdal-3.3.2.tar.gz 3.3.2 Release Notes (3.3.2 md5)
2021-07-05 gdal-3.3.1.tar.gz 3.3.1 Release Notes (3.3.1 md5)
2021-05-03 gdal-3.3.0.tar.gz 3.3.0 Release Notes (3.3.0 md5)
2021-05-04 gdal-3.2.3.tar.gz 3.2.3 Release Notes (3.2.3 md5)
2021-03-10 gdal-3.2.2.tar.gz 3.2.2 Release Notes (3.2.2 md5)
2020-12-28 gdal-3.2.1.tar.gz 3.2.1 Release Notes (3.2.1 md5)
2020-10-26 gdal-3.2.0.tar.gz 3.2.0 Release Notes (3.2.0 md5)
2020-10-23 gdal-3.1.4.tar.gz 3.1.4 Release Notes (3.1.4 md5)
2020-09-01 gdal-3.1.3.tar.gz 3.1.3 Release Notes (3.1.3 md5)
2020-07-07 gdal-3.1.2.tar.gz 3.1.2 Release Notes (3.1.2 md5)
2020-06-22 gdal-3.1.1.tar.gz 3.1.1 Release Notes (3.1.1 md5)
2020-05-03 gdal-3.1.0.tar.gz 3.1.0 Release Notes (3.1.0 md5)
2020-01-28 gdal-3.0.4.tar.gz 3.0.4 Release Notes (3.0.4 md5)
2020-01-08 gdal-2.4.4.tar.gz 2.4.4 Release Notes (2.4.4 md5)
2020-01-08 gdal-3.0.3.tar.gz 3.0.3 Release Notes (3.0.3 md5)
2019-10-28 gdal-3.0.2.tar.gz 3.0.2 Release Notes (3.0.2 md5)
2019-10-28 gdal-2.4.3.tar.gz 2.4.3 Release Notes (2.4.3 md5)
2019-06-28 gdal-3.0.1.tar.gz 3.0.1 Release Notes (3.0.1 md5)
2019-06-28 gdal-2.4.2.tar.gz 2.4.2 Release Notes (2.4.2 md5)
Development Source
The main repository for GDAL is located on GitHub at https://github.com/OSGeo/GDAL.
You can obtain a copy of the active source code by issuing the following command
git clone https://github.com/OSGeo/GDAL.git
Additional information is available about Build requirements and Building GDAL from source.
Binaries
In this section we list a number of the binary distributions of GDAL all of which should have fully reproducible open source build recipes.
Note that the maintainers of those distributions are generally not the maintainers of the GDAL sources, so please report any issue specific to those builds through their own support channels.
Windows
Windows builds are available via Conda Forge (64-bit only). See the Conda section for more detailed information.
Debian
Debian packages are now available on Debian Unstable.
Conda
Conda can be used on multiple platforms (Windows, macOS, and Linux) to install software packages and manage environments. Conda packages for GDAL are available at https://anaconda.org/conda-forge/gdal.
conda install [-c channel] [package...]
conda install -c conda-forge gdal
To install the Arrow and Parquet drivers as plugins:
conda install -c conda-forge libgdal-arrow-parquet
GDAL master Conda builds
GDAL master builds are available in the gdal-master
channel. They are based on dependencies from the conda-forge
channel.
First create a dedicated gdal_master_env
environment, activate it and install
the mamba
package manager.
conda update -n base -c conda-forge conda
conda create --name gdal_master_env
conda activate gdal_master_env
conda install -c conda-forge mamba
Then install GDAL from the gdal-master
channel:
mamba install -c gdal-master gdal
mamba install -c gdal-master libgdal-arrow-parquet # if you need the Arrow and Parquet drivers
Vcpkg
The gdal port in vcpkg is kept up to date by Microsoft team members and community contributors. The url of vcpkg is: https://github.com/Microsoft/vcpkg . You can download and install gdal using the vcpkg dependency manager:
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh # ./bootstrap-vcpkg.bat for Windows
./vcpkg integrate install
./vcpkg install gdal
If the version is out of date, please create an issue or pull request on the vcpkg repository.
Spack
Spack is a package management tool designed to support multiple versions and configurations of software on a wide variety of platforms and environments. It was designed for large supercomputing centers. Spack builds packages from sources, and allows tweaking their configurations.
You can find information about GDAL in Spack at https://spack.readthedocs.io/en/latest/package_list.html#gdal
For the default GDAL build with a reduced number of drivers:
git clone -c feature.manyFiles=true https://github.com/spack/spack.git
cd spack/bin
./spack install gdal
For a build with netcdf driver enabled:
./spack install gdal +netcdf
Linux Docker images
Images with nightly builds of GDAL master and tagged releases are available at GitHub Container registry
Information on the content of the different configurations can be found at https://github.com/OSGeo/gdal/tree/master/docker