npm ERR!该操作被您的操作系统拒绝。

4
npm install -g create-react-app
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! 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!     /home/legend/.npm/_logs/2020-05-04T08_45_14_806Z-debug.log

这看起来像是权限错误,您即将在没有权限的文件夹上安装npm模块的全局实例,您可以使用sudo来解决。 - vaske
1个回答

8

您需要管理员权限才能全局安装模块,请使用sudo命令运行:

sudo npm install -g create-react-app

1
这对我来说使用 angular/cli 可行。任何由 node 进行的全局 (-g) 安装都需要 sudo 命令。 - Sterling Diaz

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接