AttributeError:'GeoDataFrame'对象没有属性'str'

问题描述 投票:0回答:1

所以我尝试了这个:

import GeoDataFrame

但是它显示以下错误:

ModuleNotFoundError
Traceback (most recent call last)
<ipython-input-93-3125c1efb589> in <module>
----> 1 import GeoDataFrame

ModuleNotFoundError: No module named 'GeoDataFrame'

当我使用命令在cmd上安装时:

pip install GeoDataFrame

ERROR: Could not find a version that satisfies the requirement GeoDataFrame (from versions: none)
ERROR: No matching distribution found for GeoDataFrame
python python-2.7 geopandas
1个回答
0
投票
我认为您需要通过pip install geopandas安装它。请仔细阅读其documentation以使用地理数据框。
© www.soinside.com 2019 - 2024. All rights reserved.