我正在尝试安装聚乙二醇在 Windows 7 机器上。Pip 非常不稳定,所以我不确定它这次想要什么。首先我运行pip install PyECC
并得到
Collecting PyECC
Could not find any downloads that satisfy the requirement PyECC
Some externally hosted files were ignored as access to them may be unreliable
(use --allow-external PyECC to allow).
No distributions at all found for PyECC
于是我pip install --allow-external PyECC
跑去
You must give at least one requirement to install (see "pip help install")
有什么要求?帮助命令根本没有帮助,并且 Pypi 页面没有提供 pip 说明。
答案1
使用pip install --allow-external PyECC
,您允许 pip 在需要时从外部存储库下载 PyECC,但您没有告诉它要安装什么。
您需要使用pip install --allow-external PyECC PyECC
它来告诉它安装 PyECC,同时允许它从外部源下载 PyECC。
答案2
使用版本 pip 7.1.2:
我发现的可能的命令实际上是--allow-all-external
--allow-external
,虽然上面说可以使用,但似乎并不存在。
希望这可以帮助。