pip找不到满足要求的版本

Pip could not find a version that satisfies the requirement

我在使用 pip 安装包时遇到问题。我试过了:

pip install jurigged

导致这些错误:

    ERROR: Could not find a version that satisfies the requirement jurigged (from versions: none)
    ERROR: No matching distribution found for jurigged

我检查了 pip 是否是最新的。我在 Python 3.7.4.

有谁知道这个问题的解决方案吗?

您可以通过输入

解决这个问题
 pip install pandas --trusted-host pypi.org --trusted-host files.pythonhosted.org

到cmd 和
如果您想修复此设置,请在 window 中生成文件 %HOME%\pip\pip.ini 并将下面的代码添加到文件中,

    [global]trusted-host = pypi.org
                           files.pythonhosted.org

来自 PyPI, jurigged is only supported as of Python >= 3.8 (see also here)

pip 没有找到要安装的东西,因为您不符合要求。

升级到 Python >= 3.8 并执行相同的操作:pip install jurigged

1 - 您已经安装了 python3,但是 /usr/bin/python 中的 python 可能仍然是旧版本,因此 运行 以下命令可以修复它

    python3 -m pip install <pkg>

2 - 另一个可能的原因可能是最初忘记了 -r:使用 pip install -r requirements.txt -r 对于命令是必不可少的。

3 - 如果仍然无法正常工作,有一种方法可以修复此错误。试试这个,但首先,获取你的包的版本

    python3 -m pip install --pre --upgrade PACKAGE==VERSION.VERSION.VERSION

4 - 你知道有时候包已经存在然后我们也会得到这个错误,所以试着检查你是否能够导入。

5 - 有时尝试 pipwin 而不是 pip 如果问题出在 pip 上,这就像一个魔法

6 - 不要忘记打开互联网,这很奇怪,但有时会发生。

让我知道问题是否仍然存在。但根据我的猜测,它现在应该可以工作了。祝你好运!!!