google|google earth engine python本地化配置 及出现的错误

1. pip install google-api-python-client
2.pip install pyCrypto
第二步的时候如果出现错误将 pyCrypto 换成pyCryptodome
3.pip install earthengine-api
4.
set http_proxy=http://127.0.0.1:1080
set https_proxy=http://127.0.0.1:1080
如果缺这一步下面验证将出现错误
5. earthengine authenticate
以上完成了gee python本地的配置
写代码的时候 注意 要加入下面 os.environ代码 否则会出现网络连接错误
【google|google earth engine python本地化配置 及出现的错误】import os
# update the proxy settings
# os.environ['HTTP_PROXY'] = 'my_proxy_id:proxy_port'
# os.environ['HTTPS_PROXY'] = 'my_proxy_id:proxy_port'
os.environ['HTTP_PROXY'] = 'http://127.0.0.1:1080'
os.environ['HTTPS_PROXY'] = 'http://127.0.0.1:1080'

    推荐阅读