Redhat wal-e 安装

Redhat wal-e 安装

我正在努力https://github.com/wal-e/wal-e安装在 Redhat 系统上。我一直使用 pip 方法进行安装。我相信我安装了所有必需的依赖项,但它仍然抛出未找到分发的错误。请参阅下面的输出。

wal-e Traceback (most recent call last): File "/usr/bin/wal-e", line 5, in from pkg_resources import load_entry_point File "/usr/lib/python2.6/site-packages/pkg_resources.py", line 2655, in working_set.require(requires) File "/usr/lib/python2.6/site-packages/pkg_resources.py", line 648, in require needed = self.resolve(parse_requirements(requirements)) File "/usr/lib/python2.6/site-packages/pkg_resources.py", line 546, in resolve raise DistributionNotFound(req) pkg_resources.DistributionNotFound: python-keystoneclient>=0.4.2

我对 Python 并不熟悉,但我认为安装包应该很容易。任何帮助都非常感谢。

当我运行 pip list 时,我在输出中看到 python-keystoneclient (0.10.1)。对我来说,这意味着它已安装。

答案1

我找到了问题的解决方案。解决方案是我还必须在 Python 中安装 setuptools 包。

sudo pip install --upgrade setuptools

在我完成这些之后,一切都加载正常并且正常工作。不知道为什么文档中没有这个步骤。

相关内容