GeoDjango と必要なすべてのライブラリを正常にインストールしました。環境変数とレジストリ キーを設定しました (ここでは Windows で動作します)。すべてがコマンド ラインから見つかります。
d:\...\> python
>>> from django.contrib.gis.geos import *
>>> exit()
d:\...\> python manage.py runserver 0.0.0.0
(...)
ここで実行されているサーバーが、実行するはずのコードとまったく同じ行に遭遇すると、次のように表示されます。
WindowsError at /NT/BUAConvex/4DED02804:SQLEXPRESS:44_EU_2011Q2/20187417/
[Error 126] The specified module could not be found
D:\...\views.py in <module>
from django.contrib.gis.geos import * ...
c:\python27\lib\site-packages\django\contrib\gis\geos\__init__.py in <module>
from django.contrib.gis.geos.geometry import GEOSGeometry, wkt_regex, hex_regex ...
c:\python27\lib\site-packages\django\contrib\gis\geos\geometry.py in <module>
from django.contrib.gis.geos.coordseq import GEOSCoordSeq ...
c:\python27\lib\site-packages\django\contrib\gis\geos\coordseq.py in <module>
from django.contrib.gis.geos.libgeos import CS_PTR ...
c:\python27\lib\site-packages\django\contrib\gis\geos\libgeos.py in <module>
lgeos = CDLL(lib_path) ...
c:\python27\lib\ctypes\__init__.py in __init__
self._handle = _dlopen(self._name, mode) ...