Changes between Initial Version and Version 1 of Ticket #32071


Ignore:
Timestamp:
Oct 4, 2020, 3:42:58 PM (4 years ago)
Author:
Jef D
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32071 – Description

    initial v1  
    11I'm currently trying to include a leaflet map in Django. For this I'm using the Point class included in Django that requires the GDAL library in turn.
    22
    3 So far this process has been quite painful. Installing the GDAL library requires installing it via OSgeo4W, setting up the paths and installing some additional libraries. However, small differences in versions or multiple versions installed all cause troubles (currently I'm still facing a "OSError: [WinError 127] The specified procedure could not be found" error; OSgeo4W only supports GDAL 3.0.4 while there are no more wheels for this GDAL library and newer Python versions).
     3So far this process (documented [here](https://docs.djangoproject.com/en/3.1/ref/contrib/gis/install/#windows)) has been quite painful. Installing the GDAL library requires installing it via OSgeo4W, setting up the paths and installing some additional libraries. However, small differences in versions or multiple versions installed all cause troubles (currently I'm still facing a "OSError: [WinError 127] The specified procedure could not be found" error; OSgeo4W only supports GDAL 3.0.4 while there are no more wheels for this GDAL library and newer Python versions).
    44
    55In the end, I'm not even using any advanced functionality, so I was wondering if those necessary GDAL libraries could only be loaded when needed instead of when Point is imported. I'm happy to assist in any work that could make the use of these GIS libraries more convenient on Windows.
Back to Top