使用pygerrit.rest的问题

时间:2014-01-22 07:43:36

标签: git rest gerrit

我的机器上安装了pygerrit。我跑下面的命令来安装它:

pip install pygerrit

但是在尝试导入休息时我遇到错误:

from pygerrit.rest import GerritRestAPI
>>ImportError: No module named rest

我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

我遇到了与virtualenv中安装的pygerrit 0.2.2相同的问题。 运行时

  
    
      

imp.find_module( “pygerrit”)       (无,'/ path / env / lib / python2.7 / site-package / pygerrit',('','',5))

    
  

ls /local/repo/env/lib/python2.7/site-packages/pygerrit init .py client.py error.py events.py models.py ssh.py stream.py init .pyc client.pyc error.pyc events.pyc models.pyc ssh.pyc stream.pyc

将其与github中的内容进行比较时,缺少“rest”文件夹: https://github.com/sonyxperiadev/pygerrit/tree/master/pygerrit

因此安装程序似乎存在问题。 尝试从Github复制文件,它应该更好。

/丹尼尔