Install & Compatibility
Where this runs
tested against v0.37.2 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 12.900s · 552.7MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 25.7s · import 12.384s · 560MB
569MB installed
● package 569MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Map
✓ from geemap import Map
✗ import geemap; m = geemap.Map()
Both work, but from import is preferred.
Creates an interactive map and adds a Landsat 8 image layer from Earth Engine.
import ee
import geemap
# If not already authenticated, use ee.Authenticate()
# ee.Initialize()
# Create a map
m = geemap.Map()
# Add a sample dataset (e.g., Landsat composite)
image = ee.Image('LANDSAT/LC08/C01/T1_TOA/LC08_044034_20140318')
vis_params = {'bands': ['B4', 'B3', 'B2'], 'max': 0.3}
m.addLayer(image, vis_params, 'Landsat 8')
# Display the map
m
Errors
Common errors & fixes
ee.ee_exception.EEException: Earth Engine authentication required.
You haven't authenticated or initialized Earth Engine.
fixRun `ee.Authenticate()` then `ee.Initialize()` or use the command line: `earthengine authenticate`.
ModuleNotFoundError: No module named 'geemap'
geemap is not installed or the environment is not activated.
fixInstall with `pip install geemap` or `conda install -c conda-forge geemap`.
ImportError: cannot import name 'Map' from 'geemap'
Possibly an outdated version of geemap where Map was in a submodule or imported differently.
fixEnsure geemap is updated to the latest version: `pip install --upgrade geemap`. Then use `from geemap import Map`.
Upgrade
Version history
0.38.2latest on PyPI · released Jun 18, 2026
Audit
Dependencies
google-api-python-clientrequiredRequired for Google Earth Engine authentication and API calls
earthengine-apirequiredPython client for Google Earth Engine