CentOS7 安装 Python3.8后 pip 安装报错
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [root@localhost Python-3.8.0] # pip install bs4 Collecting bs4 Using cached https: //files .pythonhosted.org /packages/10/ed/7e8b97591f6f456174139ec089c769f89a94a1a4025fe967691de971f314/bs4-0 .0.1. tar .gz ERROR: Command errored out with exit status 1: command : /usr/local/python3 .8 /bin/python3 .8 -c 'import sys, setuptools, tokenize; sys.argv[0] = ' "'" ' /tmp/pip-install-alhbm0sp/bs4/setup .py '"' " '; __file__=' "'" ' /tmp/pip-install-alhbm0sp/bs4/setup .py '"' " ';f=getattr(tokenize, ' "'" ' open '"' " ', open)(__file__);code=f.read().replace(' "'" '\r\n '"' " ', ' "'" '\n '"' " ');f.close();exec(compile(code, __file__, ' "'" ' exec '"' " '))' egg_info --egg-base /tmp/pip-install-alhbm0sp/bs4/pip-egg-info cwd: /tmp/pip-install-alhbm0sp/bs4/ Complete output (11 lines): Traceback (most recent call last): File "<string>" , line 1, in <module> File "/usr/local/python3.8/lib/python3.8/site-packages/setuptools/__init__.py" , line 20, in <module> from setuptools.dist import Distribution, Feature File "/usr/local/python3.8/lib/python3.8/site-packages/setuptools/dist.py" , line 36, in <module> from setuptools import windows_support File "/usr/local/python3.8/lib/python3.8/site-packages/setuptools/windows_support.py" , line 2, in <module> import ctypes File "/usr/local/python3.8/lib/python3.8/ctypes/__init__.py" , line 7, in <module> from _ctypes import Union, Structure, Array ModuleNotFoundError: No module named '_ctypes' ---------------------------------------- ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. |
解决方法:
需要安装 libffi-devel
1 | yum install libffi-devel -y |
重新编译安装
1 | make install |
验证:
1 2 3 4 5 6 | [root@localhost Python-3.8.0] # python3 Python 3.8.0 (default, Dec 4 2019, 06:08:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux Type "help" , "copyright" , "credits" or "license" for more information. >>> import sys, setuptools, tokenize >>> |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· AI与.NET技术实操系列(六):基于图像分类模型对图像进行分类