1
resposta

Problemas no SQLITE3 também no ubuntu

Eu troquei o sistema operacional do windows para o Ubuntu e mesmo assim o problema com o sqlite3 persiste, já não sei mais como corrigir isso

fiz o comando bundle install e tudo roda exceto o bendito SQLite3, não vejo nem motivos para seguir o curso de ruby rails se não consigo nem iniciar o servidor.

Achei muito largada essa instrução de instalação, o professor poderia ter feito um vídeo passo a passo.

sudo gem install sqlite3
Building native extensions. This could take a while...
ERROR:  Error installing sqlite3:
        ERROR: Failed to build gem native extension.

    current directory: /var/lib/gems/2.5.0/gems/sqlite3-1.4.2/ext/sqlite3
/usr/bin/ruby2.5 -r ./siteconf20200823-20931-ktc0ay.rb extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'brew install sqlite3',
'yum install sqlite-devel' or 'apt-get install libsqlite3-dev'
and check your shared library search path (the
location where your sqlite3 shared library is located).
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
        --with-opt-dir
        --without-opt-dir
        --with-opt-include
        --without-opt-include=${opt-dir}/include
        --with-opt-lib
        --without-opt-lib=${opt-dir}/lib
        --with-make-prog
        --without-make-prog
        --srcdir=.
        --curdir
        --ruby=/usr/bin/$(RUBY_BASE_NAME)2.5
        --with-sqlcipher
        --without-sqlcipher
        --with-sqlite3-config
        --without-sqlite3-config
        --with-pkg-config
        --without-pkg-config
        --with-sqlcipher
        --without-sqlcipher
        --with-sqlite3-dir
        --without-sqlite3-dir
        --with-sqlite3-include
        --without-sqlite3-include=${sqlite3-dir}/include
        --with-sqlite3-lib
        --without-sqlite3-lib=${sqlite3-dir}/lib

To see why this extension failed to compile, please check the mkmf.log which can be found here:

  /var/lib/gems/2.5.0/extensions/x86_64-linux/2.5.0/sqlite3-1.4.2/mkmf.log

extconf failed, exit code 1

Gem files will remain installed in /var/lib/gems/2.5.0/gems/sqlite3-1.4.2 for inspection.
Results logged to /var/lib/gems/2.5.0/extensions/x86_64-linux/2.5.0/sqlite3-1.4.2/gem_make.out
1 resposta

Olá Leonardo,

Talvez seja necessário você instalar o libsqlite3-dev para permitir que a gem seja compilada como mostrado no erro, tenta então fazer a instalação pelo comando abaixo:

apt-get install libsqlite3-dev

Após isso tenta novamente fazer o gem install sqlite3 e diz aqui qual é o retorno.


Vou repassar para a equipe a sugestão de fazer um passo a passo mais detalhado sobre a instalação dessa gem e talvez de outras comuns.