【发布时间】:2019-03-28 02:03:25
【问题描述】:
认证后,地球引擎API通过Initialize()函数成功连接服务器。
import ee
ee.Initialize()
但是,一旦我开始使用代理服务器,初始化就会失败并产生以下错误。
TimeoutError: [WinError 10060] A connection attempt failed because the
connected party did not properly respond after a period of time, or
established connection failed because connected host has failed to respond
我尝试过修改IPython notebook服务器环境
import os
os.environ['HTTP_PROXY'] = 'my_proxy_id:proxy_port'
os.environ['HTTPS_PROXY'] = 'my_proxy_id:proxy_port'
ee 库仍然无法与服务器连接。如何更新代理设置?
【问题讨论】:
标签: anaconda jupyter-notebook google-earth-engine