How can I get the installed GDAL/OGR version from python?

做~自己de王妃 提交于 2019-12-05 01:37:25

gdal.VersionInfo() does what I want:

>>> osgeo.gdal.VersionInfo()
'1604'

This works on both my Windows box and Ubuntu install. gdal.__version__ gives an error on my Windows installation, although it works on my Ubuntu installation:

>>> import osgeo.gdal
>>> print osgeo.gdal.__version__
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute '__version__'

The __version__ property in the osgeo.gdal module is a string that contains the version number

import osgeo.gdal
print osgeo.gdal.__version__

On my ubuntu machine gives:

>> '1.6.3'
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!