xml-output not working

Asked by idom

I am trying to use bzr along with eclipse over centOS6.3 64 bit

I am trying to follow instructions from
http://wiki.bazaar.canonical.com/BzrEclipse/Installation

It says I need a working bzr installation
I used yum install bzr to install bzr 2.1.1

I now need bzr-xmloutput plugin to be installed
I downloaded bzr-xmloutput-0.8.8.tar.gz from the bzr website
and added plugin directory to BZR_PLUGIN_PATH

I ran in inside xmloutput directory.

root@vd1: /opt/python3/lib/python3.3/site-packages/bzrlib/plugin/bzr_xmloutput_0_8_8
[45] $ python setup.py build_ext -i
running build_ext

When I run

modi@vd1: /opt/python3/lib/python3.3/site-packages/bzrlib
[44] $ bzr help commands
bzr: ERROR: No module named xmloutput.cmds
You may need to install this Python library separately.

Can you please help ?

Regards,
Samarth

[39] $ bzr version
Bazaar (bzr) 2.1.1
  Python interpreter: /usr/bin/python 2.6.6
  Python standard library: /usr/lib64/python2.6
  Platform: Linux-2.6.32-279.19.1.el6.x86_64-x86_64-with-centos-6.3-Final
  bzrlib: /usr/lib64/python2.6/site-packages/bzrlib
  Bazaar configuration: /home/modi/.bazaar
  Bazaar log file: /home/modi/.bzr.log

Question information

Language:
English Edit question
Status:
Solved
For:
bzr-xmloutput Edit question
Assignee:
No assignee Edit question
Solved by:
Guillermo Gonzalez
Solved:
Last query:
Last reply:
Revision history for this message
Best Guillermo Gonzalez (verterok) said :
#1

Hi,

The problem is the directory name, in python directories are packages.

Try renaming /opt/python3/lib/python3.3/site-packages/bzrlib/plugin/bzr_xmloutput_0_8_8 to /opt/python3/lib/python3.3/site-packages/bzrlib/plugin/xmloutput

Regards,

Revision history for this message
idom (modi-samarth) said :
#2

Thanks Guillermo Gonzalez, that solved my question.