Como instalar o mais recente virt-manager no Debian?

0

Estou usando o Debian stable e na versão estável do virt-manager do Debian é 1.4.0, mas eu preciso usar a versão 1.5.1 porque o 1.4.0 tem um bug.

Eu fui para o link e baixei o código-fonte, então eu fui para a pasta virt installation e usei

sudo python setup.py install

Mas tenho erro

running install
Using sysprefix=/usr
running build
Generating /home/user/Downloads/virt/virt-manager-1.5.1/build/virt-manager
Generating /home/user/Downloads/virt/virt-manager-1.5.1/build/virt-install
Generating /home/user/Downloads/virt/virt-manager-1.5.1/build/virt-clone
Generating /home/user/Downloads/virt/virt-manager-1.5.1/build/virt-convert
Generating /home/user/Downloads/virt/virt-manager-1.5.1/build/virt-xml
Generating man/virt-manager.1
Generating man/virt-xml.1
Generating man/virt-install.1
Generating man/virt-clone.1
Generating man/virt-convert.1
running build_i18n
Writing po/POTFILES.in
intltool-update -p -g virt-manager
unable to execute 'intltool-update': No such file or directory
Removing po/POTFILES.in
error: [Errno 2] No such file or directory: 'po/POTFILES.in'

Estas são as instruções de instalação

# Basic Install

For starters, if you just want to run 'virt-manager/virt-install' to test out
changes, it can be done from the source directory:
'''sh
./virt-manager
'''

To install the software into '/usr/local' (usually), you can do:
'''sh
python setup.py install
'''

To build an RPM, you can run:
'''sh
python setup.py rpm
'''

'setup.py' generally has all the build and install commands, for more info see:

   - 'python setup.py --help-commands'
   - 'python setup.py install --help'
   - [Python Standard Build and Install](https://docs.python.org/2/install/#standard-build-and-install)


## Pre-requisite software

A detailed dependency list can be found in
[virt-manager.spec.in](virt-manager.spec.in) file.

Minimum version requirements of major components:

   - python >= 2.7
   - gtk3 >= 3.14
   - libvirt-python >= 0.6.0
   - pygobject3 >= 3.14
   - libosinfo >= 0.2.10

On Debian or Ubuntu based distributions, you need to install the
'gobject-introspection' bindings for some dependencies like 'libvirt-glib'
and 'libosinfo'. Look for package names that start with ''gir'', for example
'gir1.2-libosinfo-1.0'.
    
por J. Boe 01.10.2018 / 08:31

1 resposta

1

Você precisa instalar o pacote inttool.

Para isso:

sudo apt get install  intltool

De link

Package: intltool

Utility scripts for internationalizing XML

Automatically extracts translatable strings from oaf, glade, bonobo ui, nautilus theme and other XML files into the po files.

Automatically merges translations from po files back into .oaf files (encoding to be 7-bit clean). The merging mechanism can also be extended to support other types of XML files.

PS. tirou a recomendação do automake. Isso vem como uma dependência.

    
por 01.10.2018 / 08:38