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.

rails6を使おうとしたら、Webpackerがインストールできない。

Posted at

#Rails6使いたい
rails6を使ってシステムを使おうとすると、
Webpackerがインストールできない事態に遭遇しました。

rails webpacker:install

してくださいと言われたので、してみると...

sh: /usr/local/heroku/bin/node: cannot execute binary file
sh: nodejs: command not found
Node.js not installed. Please download and install Node.js https://nodejs.org/en/download/

と表示されインストールできません。

Node.jsをサイトからインストールしたり、

alias nodejs='node'

というエイリアスも追加してみましたが、変化はありませんでした。
#解決策

sh: /usr/local/heroku/bin/node: cannot execute binary file

上のエラー文がどうやら関係していたようで

rm -rf /usr/local/heroku /usr/local/lib/heroku /usr/local/bin/heroku ~/.local/share/heroku ~/Library/Caches/heroku

上記のコマンドでherokuのアンインストールを試してから
もう一度

rails webpacker:install

してみると

Webpacker successfully installed 🎉 🍰

と表示され見事Webpackerがインストールできました!

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?