当我尝试在 python 2.7 下通常通过 pip 安装 gitpython 时,它无法告诉我需要 python 3.x。
这个特定的脚本/过程一直工作到今天早上。
$ sudo pip install gitpython
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting gitpython
Using cached https://www.piwheels.org/simple/gitpython/GitPython-2.1.12-py2.py3-none-any.whl
GitPython requires Python '>=3.0, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' but the running Python is 2.7.16
我正在运行 Python 2.7.16
$ python --version
Python 2.7.16
当我查看当前文档时,我看到 Python 2.7 或更新版本被列为要求。我错过了什么?