Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-npf9报错

简介: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-npf9报错

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-npf9报错

Collecting grpcio>=1.27.1 (from etcd3==0.12.0)

Downloading https://pypi.tuna.tsinghua.edu.cn/packages/81/9a/6b33e8d15850356772f0ee6489bc8346a7aa90f0c86733283e139740865e/grpcio-1.48.2.tar.gz (22.0MB)

  100% |████████████████████████████████| 22.0MB 68kB/s  

  Complete output from command python setup.py egg_info:

  Traceback (most recent call last):

    File "<string>", line 1, in <module>

    File "/tmp/pip-build-npf95lhy/grpcio/setup.py", line 263, in <module>

      if check_linker_need_libatomic():

    File "/tmp/pip-build-npf95lhy/grpcio/setup.py", line 223, in check_linker_need_libatomic

      stderr=PIPE)

    File "/usr/lib64/python3.6/subprocess.py", line 729, in __init__

      restore_signals, start_new_session)

    File "/usr/lib64/python3.6/subprocess.py", line 1278, in _execute_child

      executable = os.fsencode(executable)

    File "/usr/lib64/python3.6/os.py", line 800, in fsencode

      filename = fspath(filename)  # Does type-checking of `filename`.

  TypeError: expected str, bytes or os.PathLike object, not list

 

  ----------------------------------------

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-npf9

报错

这个错误看起来是在尝试安装 `etcd3` 的过程中,它需要依赖于 `grpcio`,但在安装 `grpcio` 时出现了问题。错误信息表明在 `grpcio` 的安装脚本中发生了问题。

解决这个问题的一种方法是更新 `grpcio` 到最新版本,因为可能有一些 bug 已经在较新的版本中修复了。你可以使用以下命令尝试更新 `grpcio`:

```

pip install --upgrade grpcio

```

如果这仍然无法解决问题,你可以尝试安装较低版本的 `grpcio`,例如 1.27.1,因为 `etcd3` 可能需要特定版本的 `grpcio`。你可以使用以下命令安装1.27.1版本:

```

pip install grpcio==1.27.1

```

然后再尝试安装 `etcd3`。

如果问题仍然存在,请确保你的 Python 环境和依赖库都是最新的,并且尝试清除 pip 缓存,然后再次尝试安装。如果问题仍然持续存在,你可能需要查看详细的错误信息或者检查你的系统环境以寻找更多的线索来解决问题。


相关文章
|
2月前
|
资源调度 前端开发 JavaScript
Python学习二:Python包管理器pip
这篇文章介绍了Python包管理器pip的基本概念、基本操作、如何更改下载源为国内镜像以加速下载,以及如何指定安装包的位置。
69 0
Python学习二:Python包管理器pip
|
2月前
|
机器学习/深度学习 缓存 Linux
python环境学习:pip介绍,pip 和 conda的区别和联系。哪个更好使用?pip创建虚拟环境并解释venv模块,pip的常用命令,conda的常用命令。
本文介绍了Python的包管理工具pip和环境管理器conda的区别与联系。pip主要用于安装和管理Python包,而conda不仅管理Python包,还能管理其他语言的包,并提供强大的环境管理功能。文章还讨论了pip创建虚拟环境的方法,以及pip和conda的常用命令。作者推荐使用conda安装科学计算和数据分析包,而pip则用于安装无法通过conda获取的包。
141 0
|
2月前
|
Python
Python pip 操作的几种用法
Python pip 操作的几种用法
55 0
|
2月前
|
自然语言处理 搜索推荐 程序员
【Python】如何使用pip,安装第三方库和生成二维码、操作Excel
【Python】如何使用pip,安装第三方库和生成二维码、操作Excel
66 0
|
3月前
|
机器学习/深度学习 Linux 开发者
Python必备工具:pip的安装与管理
Python必备工具:pip的安装与管理
188 0
|
3月前
|
Python
python一键导出/导入pip库
python一键导出/导入pip库
103 0
|
2月前
|
Python
pip批量安装Python库 requirement.txt 离线环境无互联网环境下pip安装Python库
pip批量安装Python库 requirement.txt 离线环境无互联网环境下pip安装Python库
157 3
|
4月前
pip安装iterstrat.ml_stratifiers import MultilabelStratifiedKFold, MultilabelStratifiedShuffleSplit
文章介绍了如何使用iterative-stratification库进行多标签多分类的K折交叉验证,包括安装方法和示例代码。
70 1
|
5月前
|
Web App开发 测试技术 Shell
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
|
5月前
|
SQL Python
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
下一篇
DataWorks