使用 npm link 命令时出错

Getting an error while using the npm link command

我正在尝试在我的 windows 计算机上使用 npm link 命令,但是出现此错误有人可以在这方面帮助我吗我现在坚持了一段时间

npm ERR! code EPERM
npm ERR! syscall symlink
npm ERR! path C:\projects\app
npm ERR! dest C:\Program Files\nodejs\node_modules\lists
npm ERR! errno -4048
npm ERR! Error: EPERM: operation not permitted, symlink 'C:\projects\app' -> 'C:\Program Files\nodejs\node_modules\lists'
npm ERR!  { [Error: EPERM: operation not permitted, symlink 'C:\projects\app' -> 'C:\Program Files\nodejs\node_modules\lists']
npm ERR!   stack:
npm ERR!    'Error: EPERM: operation not permitted, symlink 'C:\projects\app' -> 'C:\Program Files\nodejs\node_modules\lists'',
npm ERR!   errno: -4048,
npm ERR!   code: 'EPERM',
npm ERR!   syscall: 'symlink',
npm ERR!   path: 'C:\projects\app',
npm ERR!   dest: 'C:\Program Files\nodejs\node_modules\lists' }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It's possible that the file was already in use (by a text editor or antivirus),
npm ERR! or that you lack permissions to access it.
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!     C:\Users\user\AppData\Roaming\npm-cache_logs20-03-27T06_37_20_042Z-debug.log

npm link 命令必须 运行 具有管理员权限。

如果你 运行宁 windows 你可以按照这个 link: https://www.isunshare.com/windows-10/2-ways-to-run-command-prompt-as-administrator-in-win-10.html

对于基于 Unix 的平台,您可以将 sudo 添加到命令的第一个。