gulp-notify: [Error in notifier] Error in plugin 'gulp-notify' not found: notify-send

不羁岁月 提交于 2019-12-02 20:37:57

I've found a resolution to this issue myself. I ran the following commands on my Ubuntu box:

sudo apt-get update
sudo apt-get install libnotify-bin

After that, I can now run gulp and get the following:

ubuntu@NAME:/var/www/html/FOLDER# gulp
[14:06:59] Using gulpfile /var/www/html/FOLDER/gulpfile.js
[14:06:59] Starting 'default'...
[14:06:59] Starting 'sass'...
[14:06:59] Running Sass: resources/assets/sass/app.scss
[14:07:00] Finished 'default' after 736 ms
[14:07:00] gulp-notify: [Laravel Elixir] Sass Compiled!
[14:07:00] Finished 'sass' after 931 ms

All looks good. Hopefully that will be of use to other SO users.

For CentOS/Fedora/RedHat 7 users:

sudo yum install libnotify

(no "-bin")

I have found the following commands, useful:

npm install notify-send

The problem is gone.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!