pip install pygbag 没有安装?

问题描述 投票:0回答:1
C:\Users\Hp>pip install pygbag
ERROR: Ignored the following versions that require a different python version: 0.0.1 Requires-Python >=3.8; 0.1.0 Requires-Python >=3.8; 0.1.5 Requires-Python >=3.8; 0.2.0 Requires-Python >=3.8; 0.3.1 Requires-Python >=3.8; 0.3.2 Requires-Python >=3.8; 0.4.0 Requires-Python >=3.8; 0.5.0 Requires-Python >=3.8; 0.6.3 Requires-Python >=3.8; 0.6.4 Requires-Python >=3.8; 0.6.5 Requires-Python >=3.8; 0.6.6 Requires-Python >=3.8; 0.7.0 Requires-Python >=3.8; 0.7.1 Requires-Python >=3.8; 0.7.2 Requires-Python >=3.8; 0.8.0 Requires-Python >=3.8; 0.8.1 Requires-Python >=3.8; 0.8.2 Requires-Python >=3.8; 0.8.3 Requires-Python >=3.8; 0.8.4 Requires-Python >=3.8; 0.8.5 Requires-Python >=3.8; 0.8.6 Requires-Python >=3.8; 0.9.0 Requires-Python >=3.8; 0.9.1 Requires-Python >=3.8
ERROR: Could not find a version that satisfies the requirement pygbag (from versions: none)
ERROR: No matching distribution found for pygbag

我尝试在我的cmd中安装pygbag。

无法安装并出现此错误...

请帮助,即使我在我的电脑上安装了最新版本的Python。

C:\Users\Yehoshu'a>python -m pip install --upgrade pip
Collecting pip
  Downloading https://files.pythonhosted.org/packages/8a/6a/19e9fe04fca059ccf770861c7d5721ab4c2aebc539889e97c7977528a53b/pip-24.0-py3-none-any.whl (2.1MB)
    100% |████████████████████████████████| 2.1MB 883kB/s
Installing collected packages: pip
  Found existing installation: pip 10.0.1
    Uninstalling pip-10.0.1:
      Successfully uninstalled pip-10.0.1
  The script pip3.10.exe is installed in 'C:\Users\Yehoshu'a\AppData\Local\Programs\Python\Python37\Scripts' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-24.0
python python-3.x pip pygbag
1个回答
0
投票

需要

python >=3.8
才能安装
pygbag

你的Python是3.7,你需要升级你的Python。

https://pypi.org/project/pygbag/

enter image description here

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