Pyajam no debian 7

1

Estou tentando fazer o pacote de instalação python pyajam

Eu tentei instalar para pip, recebi um erro 4Suite-XML package

$ pip install Pyajam

Installing collected packages: pyajam, 4Suite-XML
Running setup.py install for pyajam

Running setup.py install for 4Suite-XML
Usage:
-c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
-c --help [cmd1 cmd2 ...]
-c cmd --help
-c --help-commands
-c --help-packages

error: option --single-version-externally-managed not recognized
Complete output from command /usr/bin/python -c "import   
XML/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file_'exec'))"     install --single-version-externally-managed --record /tmp/pip-YlpamB-   record/install-  record.txt:
Usage:

-c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
-c --help [cmd1 cmd2 ...]
-c cmd --help
-c --help-commands
-c --help-packages

error: option --single-version-externally-managed not recognized

O erro aparece com a instalação do pacote 4Suite-XML, a dependência pyajam

Eu tentei instalar apenas o 4Suite-XML

pip install 4Suite-XML 

Retornar o mesmo erro

Finalmente eu tentei instalar pelo apt

apt-get install python-pyajam
apt-get install python-4Suite-XML

Não é possível encontrar o pacote python-pyajam ou python-4Suite-XML

    
por Fndiaz 19.11.2014 / 11:28

1 resposta

0

Eu resolvi o problema. Compile o pacote

$ wget http://pypi.python.org/packages/source/4/4Suite-XML/4Suite-XML-1.0.2.tar.bz2

$ tar -xvvf 4Suite-XML-1.0.2.tar.bz2

$ cd 4Suite-XML-1.0.2

$ ./setup.py install


------------------------------------------------------------------------
4Suite-XML version 1.0.2 has been successfully installed!

Python modules (including C extensions)
/usr/local/lib/python2.7/dist-packages

Executable scripts (for PATH environment variable)
/usr/local/bin

Examples, demos and other miscellaneous data files
/usr/local/share/4Suite

Developer files (regression tests)
/usr/local/lib/4Suite

Text documentation
/usr/local/share/doc/4Suite

HTML documentation
/usr/local/share/doc/4Suite/html

Obrigado a todos =]

    
por 19.11.2014 / 20:39