尝试在项目文件中全局安装 Gulp
$ npm install --global gulp
$ npm install --save-dev gulp
但收到此错误信息:
npm http GET https://registry.npmjs.org/gulp
npm http 304 https://registry.npmjs.org/gulp
npm ERR! Error: EACCES, mkdir '/usr/local/lib/node_modules/gulp'
npm ERR! { [Error: EACCES, mkdir '/usr/local/lib/node_modules/gulp']
npm ERR! errno: 3,
npm ERR! code: 'EACCES',
npm ERR! path: '/usr/local/lib/node_modules/gulp',
npm ERR! fstream_type: 'Directory',
npm ERR! fstream_path: '/usr/local/lib/node_modules/gulp',
npm ERR! fstream_class: 'DirWriter',
npm ERR! fstream_stack:
npm ERR! [ '/usr/lib/nodejs/fstream/lib/dir-writer.js:36:23',
npm ERR! '/usr/lib/nodejs/mkdirp/index.js:37:53',
npm ERR! 'Object.oncomplete (fs.js:107:15)' ] }
npm ERR!
npm ERR! Please try running this command again as root/Administrator.
npm ERR! System Linux 3.19.0-42-generic
npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" "--global" "gulp"
npm ERR! cwd /home/kanat/Public/mytestpage
npm ERR! node -v v0.10.25
npm ERR! npm -v 1.3.10
npm ERR! path /usr/local/lib/node_modules/gulp
npm ERR! fstream_path /usr/local/lib/node_modules/gulp
npm ERR! fstream_type Directory
npm ERR! fstream_class DirWriter
npm ERR! code EACCES
npm ERR! errno 3
npm ERR! stack Error: EACCES, mkdir '/usr/local/lib/node_modules/gulp'
npm ERR! fstream_stack /usr/lib/nodejs/fstream/lib/dir-writer.js:36:23
npm ERR! fstream_stack /usr/lib/nodejs/mkdirp/index.js:37:53
npm ERR! fstream_stack Object.oncomplete (fs.js:107:15)
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /home/kanat/Public/mytestpage/npm-debug.log
npm ERR! not ok code 0
有人知道如何解决这个问题吗?
答案1
您是否尝试过使用 sudo 来运行它?
sudo npm install --global gulp
sudo npm install -g gulp
另一个命令是当您尝试默认 gulp 文件时,您应该先安装 gulp。
- 对于 gulp 命令版本:
如果你之前已经全局安装了 gulp 版本,请运行
$ npm rm --global gulp
以确保你的旧版本不会与 gulp-cli 冲突。
$ npm install --global gulp-cli
在你的项目 devDependencies 中安装 gulp:
$ npm install --save-dev gulp
在项目根目录创建一个 gulpfile.js:
var gulp = require('gulp');
gulp.task('default', function() {
// place code for your default task here
});
运行 gulp:
$ gulp
如果您在运行 gulp 时遇到问题,请考虑 nodejs 尝试从错误的位置调用它,因此您可以添加:
sudo ln -s /usr/bin/nodejs /usr/bin/node