1
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 db:createからのCould not find a JavaScript runtime. See https://github.com/rails/execjs for a list of available runtimes.について

Posted at

スクールでの必修アプリ作成し終わったので今から個人でwebアプリケーションを作成!

お見苦しいところがあると思いますが、その議事録みたいな形で書いていこうと思います!

まずは開発からの環境設定から…

早速つまづく!!

rails db:createを実行したら

ExecJS::RuntimeUnavailable: Could not find a JavaScript runtime. See https://github.com/rails/execjs for a list of available runtimes. ```

調べたら、Javascriptのランタイムがインストールされていないとの事で親切丁寧に、GithubのURLを添えていただき、exec.jsをインストール進めてきました!

がこちらを参考に見ていくとどうやらnodejsがいいそうだ!
https://qiita.com/azusanakano/items/771dc9919f347de061d7
どうやらスクール必須アプリの作成中に要らぬことをしてnodejsが消えてしまったらしいので改めてHomebrewを用いてインストール!

```$ brew install nodejs```

無事インストールされたか
```$ node -v```
で確認!
無事インストールされたので改めてrails db:createを実行すると無事にデータベースが作成されました!



1
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
1
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?