本文介绍了Webpacker需要Node.js> = v6.4并且您正在使用v5.4.0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用以下命令安装Rails webpacker:
I'm trying to install rails webpacker with the command:
rails webpacker:install
rails webpacker:install
但是我收到了错误消息:Webpacker需要Node.js> = v6.4,而您正在使用v5.4.0
but i got the error: Webpacker requires Node.js >= v6.4 and you are using v5.4.0
但是输入 nodejs --version 返回: 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
现在可以使用
这篇关于Webpacker需要Node.js> = v6.4并且您正在使用v5.4.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!