-->

Webpacker requires Node.js >= v6.4 and you are usi

2019-07-22 04:55发布

问题:

I'm trying to install rails webpacker with the command:

rails webpacker:install

but i got the error: Webpacker requires Node.js >= v6.4 and you are using v5.4.0

But typing nodejs --version returns: v8.4.0

回答1:

After 1h i just got my answer. The following command will do the trick:

sudo ln -sf /usr/bin/nodejs /usr/local/bin/node

Now it works



回答2:

sudo ln -sf /usr/bin/nodejs /usr/local/bin/node

The solution of Fabio Castaldi worked for me too.