geodjango的安装与环境配置

作者:我就是个世界 发表于:2008-03-25
[color=#008000]geodjango的安装步骤与环境配置[/color]备忘录

[color=#D2691E]DJANGO很好,很强大,现在它的另一分支GIS扩展geodjango已经发布,非常漂亮! 试用中...[/color]

下面是[color=#008000]geodjango的安装与环境配置[/color]备忘录


1.   安装PYTHON2.5环境  python-2.5.1.msi

2. 配置Python2.5环境变量 C:\Python25

3. 安装django gis环境 django_branches_gis-r7341.zip 添加django环境变量 C:\Python25\Lib\site-packages\django\bin

4.   安装Python连接库 psycopg2-2.0.7-pre1.win32-py2.5-pg8.3.0-release.exe[separator]

5. 安装 PostgreSQL   postgresql-8.3.0-1.zip (postgresql-8.3-int.msi)

6.   安装 Postgis     PostGIS (1.3.1)  

7.   安装 psycopg2 连接库 psycopg2-2.0.7-pre1.win32-py2.5-pg8.3.0-release.exe

8. 安装 GEOS DLL文件 拷贝GEOS (libgeos-3-0-0rc4.dll, libgeos_c-1.dll) libraries from C:\Program Files\PostgreSQL\8.2\bin (or wherever you installed PostgreSQL) to a location accessible to the Python interpreter (e.g., C:\Python25).

9. 安装 PROJ.4  拷贝PROJ 4.6.0 到Python25的 C:\Python25\Lib\site-packages 目录下

10. 拷贝C:\Python25\Lib\site-packages\proj\bin 下面的DLL文件到 Python25 根目录

11. 添加 PROJ.4 环境变量 PROJ_LIB = C:\Python25\Lib\site-packages\proj\nad

12. 安装 gdalwin32-1.5 到Python25的 C:\Python25\Lib\site-packages 目录下

13. 拷贝C:\Python25\Lib\site-packages\gdalwin32-1.5\bin 下面的DLL文件到 Python25 根目录

14. 添加 gdalwin32-1.5 环境变量 GDAL_LIBRARY_PATH  = C:\Python25\Lib\site-packages\proj\nad


15.  验证是否安装成功测试代码

============================================================================

[code]$ python
>>> from django.contrib.gis.gdal import HAS_GDAL
>>> print HAS_GDAL # Will be False if GDAL libraries are not found
True

>>> from django.contrib.gis.tests import test_gdal
>>> test_gdal.run()


>>> from django.contrib.gis.tests import test_geos
>>> test_geos.run()[/code]

============================================================================

如果运行测试代码未发现错误,并且显示程序运行时间,那么说明你的[color=#008000]geodjango[/color]安装成功

分享:

扫一扫在手机阅读、分享本文

请发表您的评论