当我没有使用BeautifulSoup时,如何摆脱BeautifulSoup html解析器错误

时间:2018-01-01 00:40:15

标签: python python-3.x beautifulsoup

我将使用GUI制作字典程序但是我遇到了第一道障碍。我刚刚安装了一个模块(PyDictionary)但是当我运行以下代码时出现错误。

window.onerror

返回

from PyDictionary import PyDictionary
dictionary = PyDictionary()
print(dictionary.meaning("fish"))

1 个答案:

答案 0 :(得分:1)

如上所述,{Dp>这似乎与PyDictionary存在问题here。抛出BeautifulSoup错误的原因是因为PyDictionary是使用BeautifulSoup实现的。

然而,看起来这个问题可能已得到解决。你用pip安装了PyDictionary吗?如果是这样,请尝试直接从GitHub repo here安装。

编辑:我测试使用repo进行安装,问题已解决。我建议你也这样做。如果您不确定该怎么做,请随意提问。