我试图让gitzilla在ubuntu 14.04上使用python 2.7.6和git 1.9.1为我工作。 这是我第一次使用python或gitzilla。
安装gitzilla并添加git hooks的符号链接后,推送更改会提供以下输出:
geoff@jenkins:~/Example$ git push origin master
Counting objects: 5, done.
Writing objects: 100% (3/3), 282 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: Traceback (most recent call last):
remote: File "hooks/update", line 9, in <module>
remote: load_entry_point('gitzilla==2.0', 'console_scripts', 'gitzilla-update')()
remote: File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 351, in load_entry_point
remote: return get_distribution(dist).load_entry_point(group, name)
remote: File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2363, in load_entry_point
remote: return ep.load()
remote: File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2088, in load
remote: entry = __import__(self.module_name, globals(),globals(), ['__name__'])
remote: File "build/bdist.linux-x86_64/egg/gitzilla/hookscripts.py", line 11, in <module>
remote: File "build/bdist.linux-x86_64/egg/gitzilla/hooks.py", line 9, in <module>
remote: File "build/bdist.linux-x86_64/egg/gitzilla/utils.py", line 10, in <module>
remote: File "/usr/local/lib/python2.7/dist-packages/bugz/bugzilla.py", line 7, in <module>
remote: import http.cookiejar
remote: ImportError: No module named http.cookiejar
remote: error: hook declined to update refs/heads/master
To /home/geoff/gitrepos/Example.git/
! [remote rejected] master -> master (hook declined)
error: failed to push some refs to '/home/geoff/gitrepos/Example.git/'
从这个我认为我需要安装http.cookiejar(或cookielib),但我不知道如何获得它。
我尝试过没有成功:
pip install http.cookiejar
和
pip install cookielib
两次pip抱怨没有找到任何东西,但后来我尝试pip install cookiejar
确实安装了它,但我仍然得到同样的错误
pip install cookiejar
现在无怨无悔:python -c "import cookiejar"
这会抱怨找不到模块:python -c "import http.cookiejar"
任何想法如何使这个工作?
答案 0 :(得分:2)
使用安装cookiejar pip install cookiejar
答案 1 :(得分:0)
亚历山大的评论指出了问题(差不多3年前),这导致了问题评论中的答案。正如评论中所见,它是来自python2.7和python3的软件包之间的混合。如果您来到这里寻找与gitzilla解决相同的实际问题,现在补丁已经回到主分支中,所以请在我上面的评论中使用最新版本或我链接到的版本。
我正在添加此内容以关闭问题以停止回复垃圾邮件。