Estoy tratando de instalar el paquete shapely usando pip install, pero la instalación no se completa.
Escribí:
pip install shapely
Como resultado, recibí el siguiente mensaje:
F:\WPy-3670\scripts>pip install shapely
Collecting shapely
Using cached https://files.pythonhosted.org/packages/a2/fb/7a7af9ef7a35d16fa23b127abee272cfc483ca89029b73e92e93cdf36e6b/Shapely-1.6.4.post2.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\silva\AppData\Local\Temp\pip-install-a6qsxj87\shapely\setup.py", line 80, in <module>
from shapely._buildcfg import geos_version_string, geos_version, \
File "C:\Users\silva\AppData\Local\Temp\pip-install-a6qsxj87\shapely\shapely\_buildcfg.py", line 200, in <module>
lgeos = CDLL("geos_c.dll")
File "F:\WPy-3670\python-3.6.7.amd64\lib\ctypes\__init__.py", line 348, in __init__
self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] The specified module could not be found
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\silva\AppData\Local\Temp\pip-install-a6qsxj87\shapely\
He instalado otros paquetes y funcionó bien.
¿Qué puedo hacer para gestionar la instalación de este paquete? (Quiero instalarlo porque también quiero instalar el paquete geopandas, que, por cierto, muestra el mismo problema).
Muchas gracias.
1
¿Tienes instalado GEOS? Ver shapely.readthedocs.io/en/stable/project.html#requirements
slhck