Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GeoDjango could not find GDAL library in Windows 10

I am using Django 11.4 on Windows 10 and I am having problems when I try and migrate my models. I receive this error:

django.core.exceptions.ImproperlyConfigured: Could not find the GDAL library (tried "gdal201", "gdal20", "gdal111", "gdal110", "gdal19")

I followed GeoDjango's installation instructions (https://docs.djangoproject.com/en/1.11/ref/contrib/gis/install/), but I am still having trouble. Everything I have found on this error says to change the system environment variables.

I installed OSGe4W and added GDAL_DATA = C:\OSGeo4W\share\gdal as well as PROJ_LIB= C:\OSGeo4W\share\proj.

I am not sure what else to try and I would appreciate any more insight.

like image 357
Flynnpc Avatar asked Sep 20 '17 04:09

Flynnpc


2 Answers

I fixed this by editing the libgdal.py file in %PYTHONPATH%\Lib\site-packages\django\contrib\gis\gdal and adding str('gdal202') to line 26 so it reads:

 lib_names = [str('gdal201'), str('gdal202'), str('gdal111'), str('gdal110'), str('gdal19')]

Depending on what version of GDAL you are using, you may need to add a different version number.

like image 121
Rob Goldsmith Avatar answered Oct 05 '22 23:10

Rob Goldsmith


I had the same problem, and for me the issue was I had started my cmd shell before updating the PATH environment variable used to search for the GDAL library. I just had to restart my shell and everything worked.

like image 42
Brent Swekla Avatar answered Oct 06 '22 00:10

Brent Swekla