当我尝试安装 PyPI 模块 lbcapi ( sudo pip install lbcapi
) 时,遇到以下消息:
Collecting lbcapi
Could not find a version that satisfies the requirement lbcapi (from versions: )
No matching distribution found for lbcapi
可能出了什么问题?我在 Python 2 和 Python 3 中都看到了这个问题。
答案1
对我来说,运行pip download lbcapi
是可行的(对于 Python 2)。但是没有兼容 Python 3 的 lbcapi 版本吡啶甲酸,因此在 Python 3 上安装它有点棘手。
答案2
10.0.0
我卸载了旧的 pip,并通过输入以下命令安装了最新版本:
python3 -m pip uninstall pip setuptools
curl https://bootstrap.pypa.io/get-pip.py | python3
现在我的问题解决了。如果你使用的是 python2,你可以用 python 替换 python3。我希望它也适用于你。(从 Stack Overflow 复制答案)