For super super beginners.
When creating a new app in the rails tutorial
$ rails 6.0.3 new hello_app
When you execute
Traceback (most recent call last): . . can't find gem railties (= 6.0.3) with executable rails (Gem::GemNotFoundException)
I got an error like this.
https://teratail.com/questions/80979
↑ Please refer to this article
$ gem install rails -v 6.0.3
Install the gem with and try again
$ rails 6.0.3 new hello_app
It was solved by doing.
Recommended Posts