如何调试尝试安装 pyzmq 时发生的此错误?

问题描述 投票:0回答:1

我必须在 python 中安装特定的包:

pip install pyzmq==25.0.2

这会产生以下错误:

fatal error: too many errors emitted, stopping now [-ferror-limit=]
      20 errors generated.
      ************************************************
      ************************************************
      error: command '/usr/bin/clang++' failed with exit code 1
      [end of output]

   note: This error originates from a subprocess, and is likely not a problem with pip.   ERROR: Failed building wheel for pyzmq Failed to build pyzmq ERROR: Could not build wheels for pyzmq, which is required to install pyproject.toml-based projects

我需要使用特定版本的Python吗?我尝试了 python 3.8 和 3.12。我也尝试了 Bing 的 Copilot 给我的步骤 - 出现同样的错误。

背景:我使用的是 Mac,我费了很大劲才弄清楚如何安装 pip - 命令

pip install pyzmq==25.0.2
用于我试图使用诗歌运行的包构建(认知):
poetry add cognite

macos installation pip pyzmq
1个回答
0
投票

你的错误似乎不是python版本问题。

但是,请尝试使用以下命令升级您的 pip 版本:

pip install --upgrade pip

如果这没有帮助,请在虚拟环境中尝试此操作。

最后,如果没有任何效果,请尝试安装早期版本的 pyzmq

© www.soinside.com 2019 - 2024. All rights reserved.