【问题标题】:NPM Live-server not installing on zshNPM Live-server 未安装在 zsh 上
【发布时间】:2020-07-30 05:25:28
【问题描述】:

我一直在尝试通过以下方式在全球范围内安装实时服务器: npm install -g live-server 但我不断收到以下错误消息;

mac@Edozie ~ % npm install -g live-server
npm WARN deprecated chokidar@2.1.8: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.
npm WARN deprecated opn@6.0.0: The package has been renamed to `open`
npm WARN deprecated fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
npm WARN deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
npm ERR! code EACCES
npm ERR! syscall access
npm ERR! path /usr/local/lib/node_modules
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR!  [Error: EACCES: permission denied, access '/usr/local/lib/node_modules'] {
npm ERR!   stack: "Error: EACCES: permission denied, access '/usr/local/lib/node_modules'",
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/local/lib/node_modules'
npm ERR! }
npm ERR! 
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR! 
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/mac/.npm/_logs/2020-07-30T04_56_32_406Z-debug.log

我已按照教程中的每个步骤进行操作,我目前正在观看安装它,但我不断收到此消息。请问,我错过了什么?

【问题讨论】:

    标签: node.js npm zsh npm-live-server


    【解决方案1】:

    这只是一个猜测,但修改 /usr/local/lib/node_modules 的权限可能会修复安装:

    sudo chmod -R 775 /usr/local/lib/node_modules
    

    我之前通过修改 /usr/local/lib 中的东西把事情搞砸了,所以请自行决定使用。

    【讨论】:

      猜你喜欢
      • 2020-11-30
      • 2022-08-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-08-25
      • 2012-09-26
      • 1970-01-01
      相关资源
      最近更新 更多