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

ID:20582 / 打印

linux 上安装 python levenshtein 库遇到错误:缺少 gcc 依赖项,如何解决?

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

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

错误信息:

error: command errored out with exit status 1: command: /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(compile(code, file, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-cv8p0664 cwd: /tmp/pip-install-_97ezszt/python-levenshtein/

答案

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

解决方法:

立即学习“Python免费学习笔记(深入)”;

使用 yum 安装 gcc:

yum install gcc

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

pip install python-Levenshtein
上一篇: 最好的编程语言是什么? []
下一篇: 如何将 Python 字符串转换为字典列表?

作者:admin @ 24资源网   2025-01-14

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。