无法使用npm安装Firebase CLI

时间:2018-01-23 17:39:35

标签: node.js firebase npm npm-install firebase-tools

我首先安装了node和npm

Ahmads-MacBook-Pro:~ ahmadbazzi$ npm --version
5.6.0
Ahmads-MacBook-Pro:~ ahmadbazzi$ node --version
v8.9.4

然后我按照https://firebase.google.com/docs/functions/get-started中的步骤安装了firebase CLI。 我第一次执行

Ahmads-MacBook-Pro:~ ahmadbazzi$ npm install -g firebase-tools

给了我一大堆警告

npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
npm WARN checkPermissions Missing write access to /Users/ahmadbazzi/.npm-global/lib/node_modules/firebase-tools
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: @google-cloud/functions-emulator@1.0.0-alpha.23 (node_modules/firebase-tools/node_modules/@google-cloud/functions-emulator):
npm WARN 404 SKIPPING OPTIONAL DEPENDENCY: Not Found: @google-cloud/functions-emulator@1.0.0-alpha.23

和一大堆错误

npm ERR! path /Users/ahmadbazzi/.npm-global/lib/node_modules/firebase-tools
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/Users/ahmadbazzi/.npm-global/lib/node_modules/firebase-tools'
npm ERR!  { Error: EACCES: permission denied, access '/Users/ahmadbazzi/.npm-global/lib/node_modules/firebase-tools'
npm ERR!   stack: 'Error: EACCES: permission denied, access \'/Users/ahmadbazzi/.npm-global/lib/node_modules/firebase-tools\'',
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/Users/ahmadbazzi/.npm-global/lib/node_modules/firebase-tools' }`
npm ERR! Please try running this command again as root/Administrator.
npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/ahmadbazzi/path to npmrc folder/_logs/2018-01-23T17_29_19_771Z-debug.log

2 个答案:

答案 0 :(得分:1)

尝试各种各样的事情:

  1. 反复尝试卸载并重新安装。有时问题会自行解决。

    npm uninstall -g firebase-tools; npm install -g firebase-tools

  2. 检查错误消息中文件的特定权限。你有写入权限吗?如果不这样做,您是否需要使用sudo来编写它们?

  3. 彻底清除它尝试安装的位置,显然是/Users/ahmadbazzi/.npm-global

答案 1 :(得分:0)

这对我有用:

sudo npm install -g firebase-tools

显然,安装需要超级用户特权,您可以使用sudo来请求。