ERROR pip install_error ai_generated true

错误:包 'X' 需要不同的 Python 版本:X.Y 不在 '>=3.8,<3.11' 范围内

ERROR: Package 'X' requires a different Python: X.Y not in '>=3.8,<3.11'

ID: pip/error-installing-package-with-python-version-not-in-range-from-requirements-txt

其他格式: JSON · Markdown 中文 · English
95%修复率
90%置信度
1证据数
2023-07-01首次发现

版本兼容性

版本状态引入弃用备注
pip 20.3+ active
Python 3.8-3.12 active

根因分析

当前 Python 解释器版本不满足包元数据中指定的 python_requires 约束。

English

The current Python interpreter version does not satisfy the package's python_requires constraint specified in its metadata.

generic

官方文档

https://packaging.python.org/en/latest/specifications/core-metadata/#requires-python

解决方案

  1. 创建一个具有兼容 Python 版本的新虚拟环境:python3.9 -m venv myenv && source myenv/bin/activate && pip install <包名>
  2. 使用 pyenv 安装兼容的 Python 版本:pyenv install 3.10.11 && pyenv local 3.10.11 && pip install <包名>
  3. 安装支持您当前 Python 版本的旧版本包:pip install <包名>==<支持您Python的版本>

无效尝试

常见但无效的做法:

  1. Using --ignore-requires-python flag to bypass the check 100% 失败

    This flag does not exist in pip; it is a common misconception from conda or other tools.

  2. Installing a different version of the package with --no-deps 95% 失败

    The python_requires constraint is checked before dependency resolution; --no-deps does not bypass it.

  3. Creating a virtual environment with the same Python version but different name 90% 失败

    The Python version in the virtual environment is still the same; the constraint is version-based, not environment-based.