Milky_English
@Milky_English

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

Ruby on Railsで新規アプリケーションを作成したい。

解決したいこと

Ruby on Railsで新規アプリケーションを作成したい。
Cloud9で「rails new アプリケーション名」とコマンドを打ちましたが、エラーが発生してしまいました。解決方法をご教示いただけると幸いです;;

(現在、プログラミング学習を開始したばかりの状態です。トンチンカンなことを言っていたら申し訳ありません...。どなたか助けていただけたら幸いです;;)

発生している問題・エラー

エラーメッセージは以下の通りです。

Could not find gem 'importmap-rails' in locally installed gems.
rails importmap:install
Could not find gem 'importmap-rails' in locally installed gems.
Run bundle install to install missing gems.
rails turbo:install stimulus:install
Could not find gem 'importmap-rails' in locally installed gems.
Run bundle install to install missing gems.

該当するソースコード

rails new first_app

自分で試したこと

バージョンを確認しました。
ruby 3.1.2p20
Rails 7.0.5
node v16.20.0
yarn 1.22.19
convert
Version: ImageMagick 7.1.1-5 Q16-HDRI x86_64 92a5afcfa:20230326
https://imagemagick.org
Copyright: (C) 1999 ImageMagick Studio LLC
License: https://imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP(4.5)
Delegates (built-in): jng jpeg lzma png tiff webp xml zlib
Compiler: gcc (7.3)
irb
3.1.2 :001 > require 'sqlite3'
=> true
3.1.2 :002 > SQLite3::SQLITE_VERSION
=> "3.42.0"

以下のコマンドでRailsや必要なソフトウェアをインストールしました。
wget https://wals.s3.ap-northeast-1.amazonaws.com/curriculum/rails/environment.sh

sh environment.sh

1

1Answer

下記のエラーより、gemfileにimportmapを追加して、bundle install を実行したらいいと思いますよ

Could not find gem 'importmap-rails' in locally installed gems.
rails importmap:install

1Like

Comments

  1. @Milky_English

    Questioner

    解決しました!!ご回答ありがとうございました!!

Your answer might help someone💌