Installing Shapely under windows: OSError: [WinError 126] The specified module cannot be found.

Install the Shapely third-party package under the win10 operating system, the command is as follows:

pip install Shapely

The following error occurred:
Insert picture description here
Many blogs solve the problem of unsuccessful installation of Shapely by downloading the corresponding whl file. After trying many times, the error still occurs. The
reason : According to the error message, the geos_c.dll dynamic link library cannot be found, so this type of The problem is very simple. Download the corresponding dll file from the Internet and put it in the specified location.
Solution : Download geos_c.dll from the following URL and put it under the D:\Anaconda3\Library\bin directory (ps: Note Is it a virtual environment built by myself)

https://www.dll-files.com/download/d8b5101f07394b4562ef673869395443/geos_c.dll.html?c=aGwxcEZIbXBzUE5nWWlwV3kyaWt4QT09 So
far, the problem is solved perfectly
################### #######over#################################

Guess you like

Origin blog.csdn.net/qq_28057379/article/details/115235302