import cartopy.crs as ccrs报错ImportError: cannot import name lgeos
时间: 2023-08-30 08:10:23 浏览: 436
完美解决import cv2 出现 ImportError:DLL load fail:找不到指定模块
这个错误通常是由于 GeoPandas 没有正确安装造成的。首先,确保你已经安装了 GeoPandas。如果已经安装,尝试重新安装 GeoPandas 并确保其依赖项已正确安装。如果重新安装无效,可以尝试卸载 GeoPandas 并使用以下命令重新安装它:
```
pip install --no-binary :all: shapely
pip install geopandas
```
这将确保 Shapely 正确安装。如果问题仍然存在,请确保你的 conda 环境正确配置,或者考虑使用其他的虚拟环境。
阅读全文