0. 问题描述
当在windows 安装 python shapely包的时候,会报错如下:
代码语言:javascript复制C:Usersxiaos>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:UsersxiaosAppDataLocalTemppip-install-73psdp3nshapelysetup.py", line 80, in <module>
from shapely._buildcfg import geos_version_string, geos_version,
File "C:UsersxiaosAppDataLocalTemppip-install-73psdp3nshapelyshapely_buildcfg.py", line 200, in <module>
lgeos = CDLL("geos_c.dll")
File "C:DatasAppsRJMiniconda3libctypes__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:UsersxiaosAppDataLocalTemppip-install-73psdp3nshapely
1. 解决方法
使用conda,如果没有conda环境建议从这里安装miniconda,选取对应的系统,选择较新的版本。
代码语言:javascript复制conda install shapely -y
C:Usersxiaos>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
Hope this help。。