本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

Linux上安装PythonLevenshtein库遇到错误:缺少GCC依赖项_如何解决?

网络教程 app 1℃

Linux上安装PythonLevenshtein库遇到错误缺少GCC依赖项_如何解决

levenshtein 错误:在 c++olor:#f60; text-decoration:underline;’ href=”www./zt/15718.html” target=”_blank”>linux 中安装

问题: 在 windows 本地计算机上,使用 whl 方式安装 python levenshtein 库成功了,克服了 vc++ 问题。但是,在上载到 linux 服务器后,安装遇到错误。

错误信息:

error: mand errored out with exit status 1:mand: /yuwei/anaconda3/bin/python -u -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘"’"’/tmp/pip-install-_97ezszt/python-levenshtein/setup.py’"’"’; file=’"’"’/tmp/pip-install-_97ezszt/python-levenshtein/setup.py’"’"’;f=getattr(tokenize, ‘"’"’open’"’"’, open)(file);code=f.read().replace(‘"’"”"’"’, ‘"’"”"’"’);f.close();exec(pile(code, file, ‘"’"’exec’"’"’))’ bdist_wheel -d /tmp/pip-wheel-cv8p0664cwd: /tmp/pip-install-_97ezszt/python-levenshtein/

答案

该错误是由于缺少依赖项,即未安装 gcc(gnu 编译器集合)。

解决方法:

使用 yum 安装 gcc:

yum install gcc

安装 gcc 后,重新安装 python levenshtein 库:

pip install python-Levenshtein

以上就是Linux 上安装 Python Levenshtein 库遇到错误:缺少 GCC 依赖项,如何解决?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » Linux上安装PythonLevenshtein库遇到错误:缺少GCC依赖项_如何解决?

喜欢 (0)