node.js - 安装 Yo 和使用角度生成器时出错

标签 node.js npm yeoman yeoman-generator

我正在尝试使用 NPM 安装 Yeoman,但遇到以下错误:

Jaspers-MacBook-Pro:Sites Jasper$ sudo npm install --global yo

> fullname-native@0.1.1 install /usr/local/lib/node_modules/yo/node_modules/fullname/node_modules/fullname-native
> node-gyp rebuild

gyp ERR! UNCAUGHT EXCEPTION 
gyp ERR! stack Error: EPERM, utime '/Users/Jasper/.node-gyp/0.10.29'
gyp ERR! System Darwin 13.3.0
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /usr/local/lib/node_modules/yo/node_modules/fullname/node_modules/fullname-native
gyp ERR! node -v v0.10.29
gyp ERR! node-gyp -v v0.13.1
gyp ERR! This is a bug in `node-gyp`.
gyp ERR! Try to update node-gyp and file an Issue if it does not help:
gyp ERR!     <https://github.com/TooTallNate/node-gyp/issues>
npm WARN optional dep failed, continuing fullname-native@0.1.1
/usr/local/bin/yo -> /usr/local/lib/node_modules/yo/cli.js

> yo@1.2.0 postinstall /usr/local/lib/node_modules/yo
> node ./scripts/doctor

[Yeoman Doctor] Everything looks alright!

npm WARN unmet dependency /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/download/node_modules/request/node_modules/form-data requires async@'~0.9.0' but will load
npm WARN unmet dependency /usr/local/lib/node_modules/generator-angular/node_modules/yeoman-generator/node_modules/async,
npm WARN unmet dependency which is version 0.2.10

因为 Yeoman 医生说“看起来不错”,我尝试安装角度生成器

npm install -g generator-angular 哟角

这只是返回了一些错误:

npm ERR! Error: EACCES, open '/Users/Jasper/.npm/lodash/2.4.1/package/package.json'
npm ERR!  { [Error: EACCES, open '/Users/Jasper/.npm/lodash/2.4.1/package/package.json']
npm ERR!   errno: 3,
npm ERR!   code: 'EACCES',
npm ERR!   path: '/Users/Jasper/.npm/lodash/2.4.1/package/package.json',
npm ERR!   parent: 'grunt-karma' }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.

npm ERR! System Darwin 13.3.0
npm ERR! command "node" "/usr/local/bin/npm" "install" "karma-phantomjs-launcher" "karma-jasmine" "grunt-karma" "--save-dev"
npm ERR! cwd /Users/Jasper/Sites/test
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.4.14
npm ERR! path /Users/Jasper/.npm/lodash/2.4.1/package/package.json
npm ERR! code EACCES
npm ERR! errno 3
npm ERR! stack Error: EACCES, open '/Users/Jasper/.npm/lodash/2.4.1/package/package.json'
npm ERR! Error: EACCES, open '/Users/Jasper/.npm/findup-sync/0.1.3/package/package.json'
npm ERR!  { [Error: EACCES, open '/Users/Jasper/.npm/findup-sync/0.1.3/package/package.json']
npm ERR!   errno: 3,
npm ERR!   code: 'EACCES',
npm ERR!   path: '/Users/Jasper/.npm/findup-sync/0.1.3/package/package.json',
npm ERR!   parent: 'load-grunt-tasks' }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.

npm ERR! System Darwin 13.3.0
npm ERR! command "node" "/usr/local/bin/npm" "install"
npm ERR! cwd /Users/Jasper/Sites/test
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.4.14
npm ERR! path /Users/Jasper/.npm/findup-sync/0.1.3/package/package.json
npm ERR! code EACCES
npm ERR! errno 3
npm ERR! stack Error: EACCES, open '/Users/Jasper/.npm/findup-sync/0.1.3/package/package.json'
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /Users/Jasper/Sites/test/npm-debug.log
npm ERR! not ok code 0

我尝试更新 node-gyp,卸载 Node 并通过自制软件重新安装但没有成功......

如果我用 sudo 安装生成器,运行 yo angular 返回以下内容

错误!系统 Darwin 13.3.0 错误!命令“node”“/usr/local/bin/npm”“安装”“karma-phantomjs-launcher”“karma-jasmine”“grunt-karma”“--save-dev” 错误! cwd/Users/Jasper/.npm/lodash/2.4.1/package 错误! Node -v v0.10.29 错误! npm -v 1.4.14 错误!路径/Users/Jasper/.npm/mkdirp/0.3.5/package/package.json 错误!代码 EACCES 错误!错误号 3 错误!堆栈错误:EACCES,打开“/Users/Jasper/.npm/mkdirp/0.3.5/package/package.json” 错误! 错误!可以在以下位置找到其他日志记录详细信息: 错误!/Users/Jasper/.npm/lodash/2.4.1/package/npm-debug.log 错误!不好代码 0

不明白为什么这行不通,因为我以前用过

我正在全新安装 OSX Mavericks

碧 Jade

最佳答案

我遇到了类似的问题。开始解决权限问题:

sudo chown -R `whoami` ~/.npm
sudo chown -R `whoami` /usr/local/lib/node_modules

这是一个热门问题:npm throws error without sudo

关于node.js - 安装 Yo 和使用角度生成器时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24571840/

相关文章:

javascript - node.js - 表达 - res.render() : Correct format for feeding variables into the JSON parameter?

node.js - 使用 Nodejs 显示产品的多个图像中的图像

node.js - 与网络相关(Firebase 实时数据库连接)

javascript - 在 React 应用程序中使用相同依赖项的不同版本

node.js - Electron - "Cannot read property ' on' of undefined”;尝试重新安装,

node.js - Webapp 生成器出现 Yeoman 错误

javascript - Sequelize 与 PostgreSQL 的关系 (generator-sql-fullstack)

gruntjs - 更改 grunt jshint 的选项

node.js - puppeteer@5.5.0 安装 : `node install.js` on M1

reactjs - 为什么material-ui占用太多空间?