安装模块提升的依赖项

时间:2018-06-28 07:21:08

标签: python dependencies elevation

我想使用模块height(Python)下载srtm1图像。我安装了立面图。但是现在当我进入eio自检时,我有了这个东西:

> u'GNU Make' not found or not usable. 
> u'unzip' not found or not usable.
> u'gunzip' not found or not usable.

> u'gdal_translate' not found or not usable.
> u'gdalbuildvrt' not found or not usable

我安装了GNU Make,但不确定是否正确。我在以下目录中有模块gdal_translate和gdalbuildvrt:C:\ OSGeo4W64 \ bin。我应该把它们移到其他地方吗?是GNU Make,unzip,gunzip,gdal_translate,gdalbuildvrt模块还是.exe?

预先感谢

1 个答案:

答案 0 :(得分:1)

我正在使用海拔模块(主版)作为外部库,如下所示:

import sys
sys.path.append("/Users/larosa/dev/ext-libs")

import elevation
elevation.clip(bounds=(12.35, 41.8, 12.65, 42), output='/Users/larosa/Rome- 
DEM.tif')

运行自检,我得到:

from elevation import cli
cli.selfcheck()

“您的系统已准备就绪。”