Windows XP에서 Python 2.7.3 용 gdal을 가져 오려고합니다.
>>> import gdal
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\gdal.py", line 2, in <module>
from osgeo.gdal import deprecation_warn
File "C:\Python27\lib\site-packages\osgeo\__init__.py", line 21, in <mo
_gdal = swig_import_helper()
File "C:\Python27\lib\site-packages\osgeo\__init__.py", line 17, in swit_helper
_mod = imp.load_module('_gdal', fp, pathname, description)
ImportError: DLL load failed: The specified procedure could not be found.
Windows에서 Python과 함께 GDAL 을 설치하는 방법에 대한 제안을 따르 십니까? 그리고 다른 곳에서는 여기까지 내가 한 일이 있습니다.
- 모든 버전의 Python을 제거하고 2.7.3 새로 설치로 시작했습니다.
- OSGeo4W 설치 프로그램으로 설치 gdal
- http://www.lfd.uci.edu/~gohlke/pythonlibs/ 에서 기본 Win gdal 바이너리를 설치했습니다 .
C:\OSGeo4W\bin;
내Path
변수 에서 먼저 추가- 시도했다
from osgeo import gdal
- OSGeo4W 셸 내에서 파이썬 출시
- http://cartometric.com/blog/2011/10/17/install-gdal-on-windows/에 설명 된 절차를 실행하십시오 .
결과는 같습니다. 이 문제를 해결하는 방법에 대한 다른 아이디어가 있습니까?
from osgeo
.