前提・実現したいこと
railsのサーバーを立ち上げたい
発生している問題・エラーメッセージ
rails s でサーバーが立ち上がらない
gem update sqlite
で以下のようなエラーが発生します。
該当のソースコード
rails
1Updating installed gems 2Updating sqlite3 3Temporarily enhancing PATH for MSYS/MINGW... 4Installing required msys2 packages: mingw-w64-x86_64-sqlite3 5エラー: mingw32: "Alexey Pavlov (Alexpux) <alexpux@gmail.com>" の署名は信頼されていません 6エラー: mingw64: "Alexey Pavlov (Alexpux) <alexpux@gmail.com>" の署名は信頼されていません 7エラー: msys: "Alexey Pavlov (Alexpux) <alexpux@gmail.com>" の署名は信頼されていません 8エラー: データベース 'mingw32' は無効です (無効または破損したデータベース (PGP 鍵)) 9エラー: データベース 'mingw64' は無効です (無効または破損したデータベース (PGP 鍵)) 10エラー: データベース 'msys' は無効です (無効または破損したデータベース (PGP 鍵)) 11pacman failed with the following output: 12Building native extensions. This could take a while... 13ERROR: Error installing sqlite3: 14 ERROR: Failed to build gem native extension. 15 16 current directory: C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/sqlite3-1.4.2/ext/sqlite3 17C:/Ruby26-x64/bin/ruby.exe -I C:/Ruby26-x64/lib/ruby/2.6.0 -r ./siteconf20200624-14040-ehpnz6.rb extconf.rb 18checking for sqlite3.h... no 19sqlite3.h is missing. Install SQLite3 from http://www.sqlite.org/ first. 20*** extconf.rb failed *** 21Could not create Makefile due to some reason, probably lack of necessary 22libraries and/or headers. Check the mkmf.log file for more details. You may 23need configuration options. 24 25Provided configuration options: 26 --with-opt-dir 27 --without-opt-dir 28 --with-opt-include 29 --without-opt-include=${opt-dir}/include 30 --with-opt-lib 31 --without-opt-lib=${opt-dir}/lib 32 --with-make-prog 33 --without-make-prog 34 --srcdir=. 35 --curdir 36 --ruby=C:/Ruby26-x64/bin/$(RUBY_BASE_NAME) 37 --with-sqlcipher 38 --without-sqlcipher 39 --with-sqlite3-config 40 --without-sqlite3-config 41 --with-pkg-config 42 --without-pkg-config 43 --with-sqlcipher 44 --without-sqlcipher 45 --with-sqlite3-dir 46 --without-sqlite3-dir 47 --with-sqlite3-include 48 --without-sqlite3-include=${sqlite3-dir}/include 49 --with-sqlite3-lib 50 --without-sqlite3-lib=${sqlite3-dir}/lib 51 52To see why this extension failed to compile, please check the mkmf.log which can be found here: 53 54 C:/Ruby26-x64/lib/ruby/gems/2.6.0/extensions/x64-mingw32/2.6.0/sqlite3-1.4.2/mkmf.log 55 56extconf failed, exit code 1 57 58Gem files will remain installed in C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/sqlite3-1.4.2 for inspection. 59Results logged to C:/Ruby26-x64/lib/ruby/gems/2.6.0/extensions/x64-mingw32/2.6.0/sqlite3-1.4.2/gem_make.out 60Gems updated: sqlite3 61
試したこと
mkdir minnade
cd minnade
rails new minna
cd minna
でminnaに移動後サーバーを立てています。
また、sqlite3に関して
どこだったか忘れてしまいましたが
そちらを参考にGemfileを
gem 'sqlite3', '~> 1.3', '>= 1.3.13'
上のように編集済みです
補足情報(FW/ツールのバージョンなど)
あなたの回答
tips
プレビュー