仍然“请尝试以root / Administrator身份再次运行此命令。”

时间:2017-12-05 05:43:53

标签: node.js git npm webpack npm-install

Windows 10,Git Bash(作为管理员),尝试:npm install --save-dev webpack-stream并得到了这个:

npm ERR! path D:\Projects\SomeProject\frontend\node_modules\fsevents\node_modules\getpass\node_modules
npm ERR! code EPERM
npm ERR! errno -4048
npm ERR! syscall lstat
npm ERR! Error: EPERM: operation not permitted, lstat 'D:\Projects\SomeProject\frontend\node_modules\fsevents\node_modules\getpass\node_modules'
npm ERR!  { Error: EPERM: operation not permitted, lstat 'D:\Projects\SomeProject\frontend\node_modules\fsevents\node_modules\getpass\node_modules'
npm ERR!   stack: 'Error: EPERM: operation not permitted, lstat \'D:\\Projects\\SomeProject\\frontend\\node_modules\\fsevents\\node_modules\\getpass\\node_modules\'',
npm ERR!   errno: -4048,
npm ERR!   code: 'EPERM',
npm ERR!   syscall: 'lstat',
npm ERR!   path: 'D:\\Projects\\SomeProject\\frontend\\node_modules\\fsevents\\node_modules\\getpass\\node_modules' }
npm ERR!
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!     C:\Users\User\AppData\Roaming\npm-cache\_logs\2017-12-05T05_24_31_143Z-debug.log

我试图:

npm cache verify

和:

npm cache clean -f

没有结果。

尝试关闭防病毒软件 - 而不是结果。尝试以管理员身份运行cmd,然后:cd project-folder -> npm install --save-dev webpack-stream - 没有结果。

npm -v
5.5.1

node -v
v8.9.1

有可能解决我的问题吗?

2 个答案:

答案 0 :(得分:0)

对我有用的是单击项目文件夹右键,选择"属性",然后取消选择"只读",然后"应用"。

答案 1 :(得分:-1)

试试这个

npm config set unsafe-perm=true

source