3

Pip 知道 pyx 包:

$ pip search pyx
PyX - Python package for the generation of PostScript and PDF files

尝试安装它会报错:

$ pip install pyx
Collecting pyx
  Could not find any downloads that satisfy the requirement pyx
  Some externally hosted files were ignored as access to them may be unreliable (use --allow-external pyx to allow).
  No distributions at all found for pyx

我按照错误消息使用--allow-external pyx了,但得到了不同的错误:

$ pip install --allow-external pyx
You must give at least one requirement to install (see "pip help install")

如何使用 pip 安装 pyx 包?

4

2 回答 2

2

您需要告诉 pip 允许外部 pyx 包实际安装它。

pip install --allow-external pyx pyx

按这个顺序写,似乎是多余的,但要安装的包名与--allow-external选项是分开的。

于 2015-03-18T17:21:05.727 回答
0

好吧,我有同样的问题,但我使用给定的命令解决了这个问题。

下面提到的命令适用于 python2

sudo pip install pyx==0.12.1

于 2018-05-12T07:26:52.260 回答