Installation¶
Installing from PyPI¶
Precompiled binary wheels for Windows, GNU/Linux and MacOS are available on PyPI and can be installed with pip:
python -m pip install basemap
Installing basemap will also install basemap-data, containing
the minimal data assets required by basemap. If you also need the
high-resolution data assets, you can install them with pip too:
python -m pip install basemap-data-hires
Installing from conda-forge¶
For Miniforge users, basemap packages are available through the
conda-forge channel:
conda install -c conda-forge basemap
Similarly to the PyPI installation, the high-resolution data assets can be installed separately if needed:
conda install -c conda-forge basemap-data-hires
Installing from source¶
Optionally, you can also install basemap from its source hosted
on GitHub as indicated in the following steps:
Install pre-requisite Python modules:
Download the
basemapsource code:git clone --depth 1 https://github.com/matplotlib/basemap.git
Build the GEOS library. You may use the helper provided in the
utilsfolder (please note that you need CMake and a working C compiler in advance):export GEOS_DIR=<your desired location> python -c "import utils; utils.GeosLibrary('3.6.5').build(installdir='${GEOS_DIR}')"
or you can link directly to the system library if it is already installed.
GEOS_DIRmust point to the GEOS installation prefix; e.g. iflibgeos_c.sois located in/usr/libandgeos_c.his located in/usr/include, then you must setGEOS_DIRto/usr.Build and install the
basemapbinary wheel:python -m pip install .
On GNU/Linux, if your Python was installed through a package management system, make sure that you have the Python header
Python.hrequired to build Cython extensions (e.g. on Debian-like systems, you should have the packagepython-devinstalled).Check that the package was installed correctly by executing:
python -c "from mpl_toolkits.basemap import Basemap"