não é possível empilhar instalar json gem no ubuntu

3

Eu instalei o ruby on rails usando rvm. Eu estou tentando empacotar instalar um projeto mais antigo que eu tinha em um antigo PC, mas eu recebo o seguinte erro quando eu executar o comando bundle install:

Installing json 1.8.3 with native extensions

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    /home/florin/.rvm/rubies/ruby-2.2.3/bin/ruby -r ./siteconf20151003-5986-vme5ji.rb extconf.rb
creating Makefile

make "DESTDIR=" clean

make "DESTDIR="
compiling generator.c
linking shared-object json/ext/generator.so
/usr/bin/ld: cannot find -lgmp
collect2: error: ld returned 1 exit status
make: *** [generator.so] Error 1

make failed, exit code 2

Gem files will remain installed in /home/florin/.rvm/gems/ruby-2.2.3/gems/json-1.8.3 for inspection.
Results logged to /home/florin/.rvm/gems/ruby-2.2.3/extensions/x86_64-linux/2.2.0/json-1.8.3/gem_make.out
An error occurred while installing json (1.8.3), and Bundler cannot continue.
Make sure that 'gem install json -v '1.8.3'' succeeds before bundling.

Lendo a internet eu tentei instalar todas as coisas de como: sudo apt-get install libpq-dev

sudo apt-get install libmysqlclient-dev
sudo apt-get install libpq-dev
sudo apt-get install libsqlite3-dev
sudo apt-get install libev-dev

mas não funcionou.

    
por Lucian Tarna 03.10.2015 / 13:46

1 resposta

6

/usr/bin/ld: cannot find -lgmp significa que o vinculador tenta vincular lgmp , mas não consegue encontrá-lo.

Solução: instale a biblioteca necessária: sudo apt-get install libgmp3-dev

Relacionados: link

    
por Jan 03.10.2015 / 13:54