我得到以下错误。有没有办法在不安装 python-Levenshtein 的情况下修复它,如果没有,那么如何在 linux 上安装 python-Levenshtein。
UserWarning: Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning
warnings.warn
我得到以下错误。有没有办法在不安装 python-Levenshtein 的情况下修复它,如果没有,那么如何在 linux 上安装 python-Levenshtein。
UserWarning: Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning
warnings.warn
首先它是一个警告。
您可以使用 pip 安装 python-Levenshtein
pip install python-Levenshtein
如果您使用的是 python 3,您可能需要更改为 pip3 以防万一
我在 Windows 10 设置中遇到了同样的错误。当我尝试时,pip install python-Levenshtein
我得到了
已满足要求:python-Levenshtein in ...
我卸载使用pip uninstall python-Levenshtein
并重新安装它。并且错误消失了。
您可以使用 -W 标志忽略警告。请注意,它将使所有警告静音。我建议按照 Preetham 的建议安装 python-levenshtein 模块。
python -W ignore foo.py