1

我正在尝试为 docker-py 包运行入门文档(https://docker-py.readthedocs.io/en/stable/index.html#getting-started )中的一些基本代码,但我遇到了Python 2.7.6 和 Python 3.4.3 中的问题:

>>> client = docker.from_env()
>>> client.images.list()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'function' object has no attribute 'list'

奇怪的是,我可以看到一个图像列表:

client.images()
[{u'Created': 1476822682, u'Labels': None, u'VirtualSize': 4802964, u'ParentId': u'', u'RepoTags': [u'alpine:3.4'], u'RepoDigests': [u'alpine@sha256:1354db23ff5478120c980eca1611a51c9f2b88b61f24283ee8200bf9a54f2e5c'], u'Id': u'sha256:baa5d63471ead618ff91ddfacf1e2c81bf0612bfeb1daf00eb0843a41fbfade3', u'Size': 4802964}]

根据文档,这似乎是出乎意料的行为。正如文档似乎暗示的那样,为什么 client.images 是一个列表而不是 Images 类的实例(如此处所示:https ://docker-py.readthedocs.io/en/stable/images.html)?我一定错过了一些简单的东西。有任何想法吗?

4

1 回答 1

3

弄清楚了。我已经 pip 安装了 docker-py,但是当前版本的包在 pypi 上被简单地称为“docker”。

于 2016-12-20T01:08:07.537 回答