我遇到了与GeoDjango on Windows: "Could not find the GDAL library" / "OSError: [WinError 126] The specified module could not be found"类似的问题 而且我还应用了给出的解决方案。在我的情况下,它似乎仍然不起作用。有什么可能的解决方案?
错误仍然相同:
OSError: [WinError 127] The specified procedure could not be found
答案 0 :(得分:0)
我从未在Windows中对此进行过测试,但是这个问题的答案(遗憾的是没有投票或选择,所以我们不能确定)OSError in Geodjango: [WinError 127] : The specified procedure could not be found建议如下:
您可能有多个Python版本,并且它们之间存在冲突。
尝试在您的virtualenv上安装GDAL,并确保
gdal202.dll
在您的virtualenv上下文中。还要确保使用pip在virtualenv内从https://www.lfd.uci.edu/~gohlke/pythonlibs/#gdal安装了正确的编译版本。
SO用户:GustavoGonçalves