pip3安装couchdbkit失败了"命令" python setup.py egg_info"

时间:2018-02-14 13:41:57

标签: python couchdbkit

我无法在ubuntu中安装couchdbkit。命令:pip3 install couchdbkit给出以下错误:

Collecting couchdbkit
  Using cached couchdbkit-0.6.5.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-_302m_0e/couchdbkit/setup.py", line 25, in <module>
        long_description = file(
    NameError: name 'file' is not defined

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-_302m_0e/couchdbkit/

如果有任何其他方法在ubuntu中安装couchdbkit,请指导我。

1 个答案:

答案 0 :(得分:0)

这是因为python3不支持couchdbkit。从python版本3x中删除了file。这也表示为here

  

Couchdbkit要求Python 2.x优于2.6。

为什么pip3仍然试图下载它是另一个问题。