Instalando o textext-0.4.4 no Inkscape 0.91

3

Estou tentando instalar o textext-0.4.4 no Inkscape 0.91. Eu estou no Ubuntu 15.04.

Eu sigo o mesmo procedimento para o Ubuntu 14.04, mas não funciona.

  1. Instale o Pstoedit e o pdflatex

  2. faça o download do textext-0.4.4.

  3. mova LICENSE.txt , textext.inx , textext.py em ~/.config/inkscape/extensions/

  4. inicie o inkscape

Infelizmente, sob extensões, não vejo Tex Text.

Saída de ls -la ~/.config/inkscape/extensions/

total 96
drwxr-x--x 2 werty werty  4096 Jul 10 20:28 .
drwxr-x--x 7 werty werty  4096 Jul 10 12:46 ..
-rw-r----- 1 root   root    1522 Jul 10 13:01 LICENSE.txt
-rw------- 1 root   root     415 Jul 10 13:01 textext.inx
-rwxr-x--- 1 root   root   32240 Jul 10 20:28 textext.py
-rwxr-x--- 1 root   root   45867 Jul 10 20:28 textext.py~

Saída de sudo ~/.config/inkscape/extensions/textext.py

Traceback (most recent call last):
  File "/home/oftefs/.config/inkscape/extensions/textext.py", line 933, in <module>
    e.affect()
  File "/usr/share/inkscape/extensions/inkex.py", line 262, in affect
self.svg_file = args[-1]
IndexError: list index out of range

Alguma sugestão?

    
por werty 10.07.2015 / 21:39

1 resposta

2

A extensão só era acessível por root . Corrija esses direitos de acesso por meio de

sudo chown $USER:$USER ~/.config/inkscape/extensions/*
    
por werty 11.07.2015 / 11:22