0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

rails sでcommand not foundが出た対処法

Last updated at Posted at 2020-09-03

#rails sでcommand not foundが出た対処法について
結論から入ると、gemをインストールすれば、解決できた。

##gemとは何か?
gemとは、
1、RubyGemsが公開しているRubyのパッケージを示す。
2、パッケージを管理するパッケージ管理システムの名前

の2つがある。

今回は、目的がrais s を起動することなので、
詳しくは触れないが、ぼんやりと頭に残しておくと良い。

##今回の対処方法

gem install rails

をターミナルに打ち込むと、

Successfully installed rails-6.0.3.2
Parsing documentation for rails-6.0.3.2
Done installing documentation for rails after 0 seconds
1 gem installed

railsのインストールが成功し、
gemもインストールされたと表示された!

そして、もう一度

rails s

を打ち込むと、何のエラー表示も出ずに、
http://localhost:3000/
を開いてみると、

スクリーンショット 2020-09-04 0.27.43.png

これで成功!!
まずは、表示されるかどうかを最初に確認すると良い。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?