1. 安装Google的 python API的客户端:
非常好用:
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com google-api-python-client
2. 安装鉴权验证依赖库:
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pycryptodome
这里也可以使用:
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pyCrypto
但会出现很多问题,做好心理准备:
error: Microsoft Visual C++ 14.0 is required.
解决方法:vc ++14.0下载(这种方法没有试过,好像比较麻烦)
更简单的方法,安装:Microsoft Visual C++ Build Tools 2015来解决问题,安装过程也很简单,一直点击确定即可:
3. 安装GEE的python库:
pip install -i http://pypi.douban.com/simple --trusted-host pypi.douban.com earthengine-api
4. 初始化GEE的API,并验证GEE账户:
python -c "import ee; ee.Initialize()"
这里需要将Google Chrome浏览器作为默认浏览器才可以。