上游 pip 依赖导致 pip 安装失败

发布于 2025-01-09 20:52:28 字数 487 浏览 1 评论 0原文

我正在尝试解决 pip 包中阻止构建 Dockerfile 的错误,并且我想更好地了解 pip 正在做什么。

问题:

当我执行 pip install -rrequirements.txt 时,它会继续安装包含 pathlib 的需求,即使它不在requirement.txt内 >。

这让我相信 pip 正在执行依赖项解析并找到 requests.txt 中的包,尝试安装它,然后失败,因为它尝试安装的 pathlib 不包含 read_textPosixPath 类(因为在 v3.5 中将 pathlib 添加到 python 之后添加了该类)。

问题:

  1. 如何查看哪个包具有 pathlib 作为依赖项?
  2. 有没有办法阻止 pip 安装上游依赖项?

I’m trying to resolve a bug within a pip package that’s preventing a Dockerfile from getting built and I'd like to better understand what pip is doing.

Problem:

When I do a pip install -r requirements.txt it proceeds to install the requirements which includes pathlib even though that’s not within requirement.txt.

This leads me to believe that pip is doing dependency resolution and finding a package that is within requirements.txt, attempting to install it, and then failing because the pathlib it is trying to install does not contain read_text with the PosixPath class (since that was added later after pathlib was added to python in v3.5).

Question:

  1. How can I see which package has pathlib as a dependency?
  2. Is there are way to prevent pip from installing an upstream dependency?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文