Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经编译了 couchdb 1.2 并且正在使用它。我现在需要使用 couchdb python,我正在尝试 yum install python-couchdb,但 yum 想要安装 couchdb 1.1.1,因为它可能找不到我的编译版本。我如何告诉 yum 只安装没有 deps 的 python-couchdb 包?
Python 使用 easy_install 进行安装,用于获取 python-couchdb 之类的 Python 鸡蛋。然而,我和许多人更喜欢一种叫做 PIP 的包装器,它可以更好地管理鸡蛋。
在linux上,您可以像这样安装它。
或者,如果您更喜欢窗户。
一旦你有了 pip,你可以通过调用来安装 python-couchdb:
sudo pip install couchdb
那不应该破坏你的沙发安装。