-->

Cannot find module 'gulp-util'

2019-08-05 13:45发布

问题:

I have some trouble with gulp. I use laravel/elixir which has gulp as its dependency. I did the steps like here Can't get Gulp to run: cannot find module 'gulp-util' but still no success. Actually the gulp-util files are inside the node_modules folder...

Anyway I'm using Xubuntu 17.04 64bit if it counts.

回答1:

I had the same problem, and tried almost everything. But then I realized that the error does not point to the local gulp in the respective project but to the global one (/usr/lib/nodejs/gulp/...).

What solved the problem for me was to update that respective gulp:

sudo npm install -g gulp

I am not sure if it is in general correct that the global gulp is used or if the one of the project should be used instead. But at least for now I was able to solve the problem with that.

Hope it helps.