0

一个月前,我为表单字段制作了自己的django 小部件。今天它被我注册到 PyPI中:

python setup.py register

我使用pip并立即检查了它:

$ pip search django-split-json-widget
django-split-json-widget  - Provides a widget that renders JSON data as separate, editable inputs.

但我无法安装我的小部件:

$ pip install django-split-json-widget
Downloading/unpacking django-split-json-widget
  Could not find any downloads that satisfy the requirement django-split-json-widget
No distributions at all found for django-split-json-widget
Storing complete log in /Users/apple/.pip/pip.log

$ pip freeze
Django==1.5.1
Pygments==1.6
chromelogger==0.3.0
distribute==0.6.40
ipython==0.13.2
jsonpickle==0.4.0
psycopg2==2.5
pudb==2013.1
requests==1.2.0
urwid==1.1.1
wsgiref==0.1.2

任何人都可以帮助我理解它并解决这些原因吗?

4

1 回答 1

3

你只注册了你的包,但没有上传任何东西。

跑去python setup.py sdist upload这样做;对于纯 python 包,您只需要源代码分发。

您可能需要阅读PyPI howto以了解更多详细信息。

于 2013-07-06T22:09:20.833 回答