簡體   English   中英

在Windows 7上安裝buildslave時遇到問題

[英]Having trouble installing buildslave on Windows 7

我終於得到了pip install buildbot-slave來在Win7上工作(由於此站點上的另一個答案),現在當我嘗試通過以下方式創建構建從屬時:

buildslave create-slave slavefolder blah.blah.com:9989 buildslave password

它會踢出以下錯誤:

Traceback (most recent call last):
  File "C:\Python27\Scripts\buildslave", line 3, in <module>
    from buildslave.scripts import runner
  File "C:\Python27\lib\site-packages\buildslave\scripts\runner.py", line 22, in <module>
    from twisted.python import reflect
  File "C:\Python27\lib\site-packages\twisted\__init__.py", line 53, in <module>
_checkRequirements()
  File "C:\Python27\lib\site-packages\twisted\__init__.py", line 37, in _checkRequirements
    raise ImportError(required + ": no module named zope.interface.")
ImportError: Twisted requires zope.interface 3.6.0 or later: no module named zope.interface.

我已經安裝了所有東西,這就是我的pip freeze

Twisted==14.0.0
argparse==1.2.1
buildbot-slave==0.8.9
stevedore==0.15
virtualenv==1.9.1
virtualenv-clone==0.2.5
virtualenvwrapper==4.3.1
virtualenvwrapper-win==1.1.5
zope.interface==4.1.1

任何建議將不勝感激。

嘗試卸載zope.interface並使用以下命令重新安裝版本3.6.0

pip uninstall zope.interface
pip install zope.interface==3.6.0

希望這可以幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM