当前位置: 首页 > 工具软件 > Tablib > 使用案例 >

pip安装tablib出现错误 ERROR: Command errored out with exit status 1

柳高卓
2023-12-01

今天新开了个小型服务器迁移系统,操作pip安装需求包时出现错误:ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

百度数次再谷歌数次.最终确定错误可能性是 setuptools 的问题,但当前的最新版本setuptools=44.1.1无修复该问题错误,遂将版本setuptools迁移至低版本40后成功安装

# 将setuptools降至低版本
pip install --upgrade setuptools==40
# 安装无问题
pip install tablib==0.14.0
# 重新升级回新版本
pip install --upgrade setuptools

完成.

 类似资料: