instala o spectrum3d no ubuntu

0

Eu quero instalar uma ferramenta de análise espectral para o Ubuntu, e acho que o Spectrum3d parecia bom.

Eu tentei seguir as instruções de instalação . Tanto quanto eu entendo, devo escrever:

sudo add-apt-repository ppa:nadaeck/spectrum3d

no terminal. Não funciona Recebo a seguinte mensagem de erro:

Traceback (most recent call last):
  File "/usr/bin/add-apt-repository", line 128, in <module>
    ppa_info = get_ppa_info_from_lp(user, ppa_name)
  File "/usr/lib/python2.7/dist-packages/softwareproperties/ppa.py", line 84, in get_ppa_info_from_lp
curl.perform()
pycurl.error: (7, "couldn't connect to host")

De minha compreensão rudimentar do linux, eu deveria ser capaz de escrever minha senha sudo aqui, mas os caracteres que eu escrevo são mostrados em texto claro. Nunca pede minha senha

Quando isso não funcionou, tentei fazer o download do sourceforge e compilá-lo, também tentei pesquisá-lo no Ubuntu Software Center, mas não consegui encontrá-lo.

Eu baixei a versão mais recente e fui para a pasta e digitei:

./configure; make; make install

Eu recebi a seguinte saída:

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking whether gcc and cc understand -c and -o together... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GTK3... no
checking for GTK2... no
configure: error: GTK library (libgtk-2.0 or libgtk-3.0) is required
make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target 'install'.  Stop.

Então, como faço para colocar este programa em funcionamento no meu sistema?

    
por user1661303 18.03.2014 / 13:04

1 resposta

0

Esse PPA é muito antigo, não tem pacotes disponíveis para 13.10 e mais recentes, então você precisaria compilar as fontes. Você precisa de alguns cabeçalhos e ferramentas para construir o software:

sudo apt-get install aptitude
sudo aptitude install build-essential libgtk-3-dev libgstreamer0.10-dev libsdl1.2-dev

Depois disso, você pode executar ./configure e criar seus pacotes como de costume:

./configure
[...]
config.status: executing depfiles commands

configure: If you want to use gtkglext, its version should match the gtk version (gtkglext-1.0 for gtk-2.0, gtkglext-3.0 for gtk-3.0)

configure:      ******************************************
configure:      *  Gstreamer version ...............1.0  *
configure:      *  GTK version .................GTK-3.0  *
configure:      *  OpenGL support...................SDL  *
configure:      *  JACK support......................NO  *
configure:      *  MULTITOUCH support................NO  *
configure:      ******************************************

A única coisa que resta é make && make install . Eu recomendo strongmente a criação de um pacote Debian, assim você pode atualizar / remover facilmente.

    
por Braiam 19.03.2014 / 03:35