I'm producing a ge image using this code:
image = ee.ImageCollection(satellite) \
.filterDate(startdate, enddate) \
.filterBounds(ee.Geometry.Point(centroid[0], centroid[1])) \
.select(bands) \
.map(removeClouds) \
.mean()
type(image)
<class 'ee.image.Image'>
How can I save the resulting image as a local GeoTIFF file, that is, a file stored in the desktop machine that's running the script?