尝试使用 python 中的地理库从文本中提取城市名称时出错
Posted
技术标签:
【中文标题】尝试使用 python 中的地理库从文本中提取城市名称时出错【英文标题】:Error whle trying to extract city names from a text using geograpy library in python 【发布时间】:2019-02-17 16:35:59 【问题描述】:这是我试过的代码
from geograpy.extraction import Extractor
import geograpy
text = """Kadawatha Opposition Leader Mahinda Rajapaksa says that the whole public administration has collapsed due to the constitution council’s arbitrary actions.
The Opposition Leader said so in response to a query a journalised raised after a meeting held in Malabe and Meegamuwa"""
places = geograpy.get_place_context(text=text)
print(places.places)
然后报错
谢谢,请帮忙。
【问题讨论】:
【参考方案1】:假设this 是您正在使用的geography
包,Install & Setup
部分说您还需要下载他们正在使用的模型:
Geograpy 使用 NLTK 进行实体识别,因此您还需要下载我们正在使用的模型。幸运的是,有一个命令可以为您解决这个问题:
地理-nltk
你下载模型了吗?
【讨论】:
【参考方案2】:尝试卸载它并使用以下命令安装:
pip install geograpy3
【讨论】:
以上是关于尝试使用 python 中的地理库从文本中提取城市名称时出错的主要内容,如果未能解决你的问题,请参考以下文章