Python2.7安装包错误解决
1.环境
- CentOS 7
- Python 2.7.5
- pip 20.3.4
2.错误描述
在安装库时出现报错Command "python setup.py egg_info" failed with error code 1
,如下图所示。
原因
:setuptools
版本太低导致。
3.解决方法
安装高版本的setuptools
,命令如下。
# 下载
wget https://files.pythonhosted.org/packages/24/49/7f567b628e14ee004938eec256cffeae7097db9e28576911ae7b84d2ff07/setuptools-41.1.0.post1.tar.gz
# 解压
tar -zxvf setuptools-41.1.0.post1.tar.gz
# 安装
cd setuptools-41.1.0.post1/
python setup.py install
参考博客
: https://blog.csdn.net/Happy_Sunshine_Boy/article/details/99619966文章来源:https://www.toymoban.com/news/detail-646179.html
https://blog.csdn.net/Chasing_Chasing/article/details/120657735文章来源地址https://www.toymoban.com/news/detail-646179.html
到了这里,关于Python2.7安装包错误解决的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!