私はmanpnikが初めてで、同様の問題に直面しています。Python geospatial dev book からサンプル コードをコンパイルしようとするたびに、mapnik はランタイム エラー メッセージをスローします。ここに問題の根本があります。
datasource = mapnik.Shapefile(file="world_borders.shp")
polygonLayer = mapnik.Layer("Polygons")
polygonLayer.datasource = datasource
polygonLayer.styles.append("polygonStyle")
error message
Traceback (most recent call last):
File "createExampleMap.py", line 45, in <module>
datasource = mapnik.Shapefile(file="world_borders.shp")
File "C:\Python27\lib\site-packages\mapnik\__init__.py", line 341, in Shapefile
return CreateDatasource(keywords)
RuntimeError: Could not create datasource for type: 'shape'
I'd appreciate help from anyone thanks