Problem z utworzeniem szkieletu aplikacji

Gdy chcę utworzyć szkielet nowej aplikacji poleceniem sudo rails new blog wyskakuje mi błąd:

Gem files will remain installed in /usr/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.6 for inspection. Results logged to /usr/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.6/ext/sqlite3/gem_make.out An error occurred while installing sqlite3 (1.3.6), and Bundler cannot continue. Make sure that `gem install sqlite3 -v '1.3.6'` succeeds before bundling.
Dopiero zaczynam swoją przygodę z railsami, nie mam pojęcia o co chodzi. Mam zainstalowaną bazę danych sqlite3. Pomożecie?

Wrzuć zawartość loga: /usr/lib/ruby/gems/1.9.1/gems/sqlite3-1.3.6/ext/sqlite3/gem_make.out

A najprawdopodobniej nie masz paczki devel.

To wszystko co znajduje się w pliku

[code]usr/bin/ruby1.9.1 extconf.rb
checking for sqlite3.h… no
sqlite3.h is missing. Try ‘port install sqlite3 +universal’
or ‘yum install sqlite-devel’ 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/ruby1.9.1
–with-sqlite3-dir
–without-sqlite3-dir
–with-sqlite3-include
–without-sqlite3-include=${sqlite3-dir}/include
–with-sqlite3-lib
–without-sqlite3-lib=${sqlite3-dir}/lib
–enable-local
–disable-local[/code]

Potwierdziło się, brakuje Ci pliku nagłowkowego:

  • sqlite3.h is missing

Musisz doinstalować paczke devel. Od dystrybucji zależy jak to zrobić. Log podpowiada Ci nawet:
Try ‘port install sqlite3 +universal’
or ‘yum install sqlite-devel’

Jeśli natomiast ubuntu to “apt-get install libsqlite3-dev”

Dzięki wielkie, wszystko już działa :slight_smile:

Wydaje mi się,że powinno też pomóc bundle install, ale widzę, że problem już rozwiązany :slight_smile:

bundle install nie pomoże, bo z powodu niespełnionych zależności gem sqlite3 sie nie zainstaluje

a dlaczego tak właściwie robisz to z sudo?