I'm learning GEE recently with accessing VPN but met error as show below:
####################################################### import ee import geemap import os geemap.set_proxy(port=7890) os.environ['HTTP_PROXY'] = 'http://127.0.0.1:7890' os.environ['HTTPS_PROXY'] = 'http://127.0.0.1:7890' Map = geemap.Map() --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In [5], line 7 5 os.environ['HTTP_PROXY'] = 'http://127.0.0.1:7890' 6 os.environ['HTTPS_PROXY'] = 'http://127.0.0.1:7890' ----> 7 Map = geemap.Map()
File ~\anaconda3\envs\gee\lib\site-packages\geemap\geemap.py:173, in
Map.__init__(self, **kwargs)
171 self.roi_end = False
172 if kwargs["ee_initialize"]:
--> 173 self.roi_reducer = ee.Reducer.mean()
174 self.roi_reducer_scale = None
176 # List for storing pixel values and locations based on user-drawn
geometries.
AttributeError: module 'ee' has no attribute 'Reducer'
############################################################## I checked too many answers through forum but nothing work. Is there anyone who knows the reason? really appreciate it!