使用pip install时出错:“找不到满足要求<package-name>”的版本

时间:2017-04-04 21:39:54

标签: python django pip

我正在尝试将django-trumbowyg https://github.com/sandino/django-trumbowyg安装到我的应用

当我pip install django-trumbowyg时,它返回了此错误:

Could not find a version that satisfies the requirement django-trumbowyg (from versions: )
No matching distribution found for django-trumbowyg

有谁知道这意味着什么?我该如何解决它?

2 个答案:

答案 0 :(得分:0)

正如https://pypi.python.org/pypi/django-trumbowyg#downloads所示,PyPI上只有Python2的二进制包。

因此,您必须在此期间直接从官方来源as pointed out by Rishav安装软件包。

然后要求开发人员将源包上传到PyPI和/或将轮子构建为universal

答案 1 :(得分:0)

如果您的公司防火墙不允许来自外部源的任何包,您也可能会收到此错误。在这种情况下,您可能需要添加代理。

例如:pip install django-trumbowyg --proxy = proxy.companydomain.com: