簡體   English   中英

使用conda在Windows上安裝Gdal python庫(DLL加載失敗)

[英]Installing gdal python library on windows using conda (DLL load failed)

我正在嘗試使用conde在Windows中安裝gdal:

> conda install gdal

當我嘗試:

import gdal

我得到這個錯誤。

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-9-ee38efafc30b> in <module>()
----> 1 import gdal

C:\Users\milad\Anaconda2\lib\site-packages\gdal.py in <module>()
      1 # import osgeo.gdal as a convenience
----> 2 from osgeo.gdal import deprecation_warn
      3 deprecation_warn('gdal')
      4 
      5 from osgeo.gdal import *

C:\Users\milad\Anaconda2\lib\site-packages\osgeo\__init__.py in <module>()
     23                 fp.close()
     24             return _mod
---> 25     _gdal = swig_import_helper()
     26     del swig_import_helper
     27 else:

C:\Users\milad\Anaconda2\lib\site-packages\osgeo\__init__.py in swig_import_helper()
     19         if fp is not None:
     20             try:
---> 21                 _mod = imp.load_module('_gdal', fp, pathname, description)
     22             finally:
     23                 fp.close()

ImportError: DLL load failed: The specified procedure could not be found.

它沒有說它缺少什么dll。

我一直在努力使GDAL適用於python,因此我在此處發布了一個指南: https : //github.com/felipunky/GISPython/blob/master/README.md向下滾動至“安裝將在python中使用的庫”腳本”部分。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM