Ubuntu中Laravel上的Gulp安装错误

时间:2018-04-07 07:28:35

标签: laravel ubuntu laravel-5 gulp ubuntu-16.04

我在Ubuntu中运行npm install gulp。显示此错误:

我的服务器是Ubuntu 16.04。

框架是Laravel 5.6。

ERROR: npm is known not to run on Node.js v4.2.6
Node.js 4 is supported but the specific version you're running has
a bug known to break npm. Please update to at least 4.7.0 to use this
version of npm. You can find the latest release of Node.js at https://nodejs.org/

我运行node -v显示此消息:v4.2.6

我运行sudo apt-get install --only-upgrade nodejs显示此消息:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
nodejs is already the newest version (9.11.1-1nodesource1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

试试这个..首先,完全卸载nodejs和npm。

sudo apt remove nodejs npm

然后,重新安装:

curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs

参考:https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions

答案 1 :(得分:0)

尝试:

sudo apt-get update 
sudo apt-get install nodejs (you already have node so this step is probably not required) 
sudo npm install -g gulp 

这应解决您的问题。

相关问题