how to solve the problem about Code cannot continue because libgeos_c-1.dll could not be found?
-
Recently I wrote a process of remote sensing image with Qt, with the help of GDAL library. But when I opened the program, I got an error:Code cannot continue because libgeos c-1.dll could not be found.
May I ask how to solve this problem? thank you! -
@Lian-ZhiYang said in how to solve the problem about Code cannot continue because libgeos_c-1.dll could not be found?:
May I ask how to solve this problem? thank you!
Provide this library.
-
I have configured the GDAL library in Qt;Is my GDAL library missing libgeos c-1.dll?
-
The library must be in the PATH so it can be found when you're executing your application.
-
@Christian-EhrlicherDo you have this library and mean the path where the program is located?
-
@Lian-ZhiYang
@Christian-Ehrlicher does not have the library for you!
You have to get it. You can put it somewhere in one of the directories in yourPATH
environment variable, or in the directory where the executable of your application lives. -
Thank you!