0. Описание проблемы
При установке пакета python shapely в Windows будет сообщено о следующей ошибке:
C:\Users\xiaos>pip install shapely
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Collecting shapely
Downloading https://pypi.tuna.tsinghua.edu.cn/packages/a2/fb/7a7af9ef7a35d16fa23b127abee272cfc483ca89029b73e92e93cdf36e6b/Shapely-1.6.4.post2.tar.gz (225kB)
|████████████████████████████████| 235kB 1.7MB/s
ERROR: Complete output from command python setup.py egg_info:
ERROR: Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\xiaos\AppData\Local\Temp\pip-install-73psdp3n\shapely\setup.py", line 80, in <module>
from shapely._buildcfg import geos_version_string, geos_version, \
File "C:\Users\xiaos\AppData\Local\Temp\pip-install-73psdp3n\shapely\shapely\_buildcfg.py", line 200, in <module>
lgeos = CDLL("geos_c.dll")
File "C:\Datas\Apps\RJ\Miniconda3\lib\ctypes\__init__.py", line 356, in __init__
self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] 找不到指定的模块。
----------------------------------------
ERROR: Command "python setup.py egg_info" failed with error code 1 in C:\Users\xiaos\AppData\Local\Temp\pip-install-73psdp3n\shapely\
1. Решение
Используйте conda, если среды conda нет, рекомендуется начать сздесьУстановите miniconda, выберите соответствующую систему и выберите более новую версию.
conda install shapely -y
C:\Users\xiaos>conda install shapely -y
Collecting package metadata (current_repodata.json): done
Solving environment: done
...
...
Downloading and Extracting Packages
mkl-service-2.0.2 | 56 KB | ############################################################################ | 100%
shapely-1.6.4 | 281 KB | ############################################################################ | 100%
certifi-2019.6.16 | 156 KB | ############################################################################ | 100%
conda-4.7.11 | 3.0 MB | ############################################################################ | 100%
mkl_random-1.0.2 | 272 KB | ############################################################################ | 100%
numpy-1.16.4 | 48 KB | ############################################################################ | 100%
numpy-base-1.16.4 | 3.3 MB | ############################################################################ | 100%
mkl_fft-1.0.14 | 137 KB | ############################################################################ | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
Надеюсь, это поможет. .