我正在使用Python 2.5,Django 1.2,MySQL和Apache启动GeoDjango项目。该项目将被上传到一个Linux服务器,但发展将在Windows上。问题是我就是不能通过安装GEOS,它是如何完成的?
nwlqm0z11#
我按照http://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#windows对于在Windows中安装GEOS库,我使用以下命令:http://trac.osgeo.org/osgeo4w/
mw3dktmi2#
我所做的是从这个答案Unable to install Python and GDAL (DLL load failed)安装GDAL,然后将这一行添加到settings.py,
settings.py
GEOS_LIBRARY_PATH = 'C:/Program Files/GDAL/geos_c.dll'
那就用postgis吧。
b09cbbtk3#
按照本教程它将安装GDAL完整的库,包括GEOS。昨天刚做的很好http://www.gis.usu.edu/~chrisg/python/2009/docs/gdal_win.pdf
b0zn9rqh4#
在我的情况下,我不得不使用我的Ubuntu:
sudo apt-get install gdal-bin
4条答案
按热度按时间nwlqm0z11#
我按照
http://docs.djangoproject.com/en/dev/ref/contrib/gis/install/#windows
对于在Windows中安装GEOS库,我使用以下命令:
http://trac.osgeo.org/osgeo4w/
mw3dktmi2#
我所做的是从这个答案Unable to install Python and GDAL (DLL load failed)安装GDAL,然后将这一行添加到
settings.py
,那就用postgis吧。
b09cbbtk3#
按照本教程它将安装GDAL完整的库,包括GEOS。昨天刚做的很好
http://www.gis.usu.edu/~chrisg/python/2009/docs/gdal_win.pdf
b0zn9rqh4#
在我的情况下,我不得不使用我的Ubuntu: