Npm 安装错误 EPERM 操作不允许
Posted
技术标签:
【中文标题】Npm 安装错误 EPERM 操作不允许【英文标题】:Npm install error EPERM Operation not permitted 【发布时间】:2018-05-26 11:38:37 【问题描述】:所以今天尝试运行 angular4 项目时,我的第一个错误是:npm install eperm operation not permitted
所以我想删除我的节点模块文件夹并重试。但是运行 npm install 我遇到了这个错误npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "start"
。我已经关闭了 vscode 以尝试运行安装以确保没有任何东西被锁定。我试过 npm cache clean 但会出错。
今天最新的斗争:
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-
cli.js',
1 verbose cli 'install',
1 verbose cli '-g',
1 verbose cli '@angular/cli@latest' ]
2 info using npm@5.5.1
3 info using node@v8.9.3
4 verbose npm-session 2a0bb102467943cf
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 error cb() never called!
管理结果:
有什么建议吗?
我的 package.json 看起来像这样:
"name": "gamemanagement",
"version": "0.0.0",
"license": "MIT",
"scripts":
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
,
"private": true,
"dependencies":
"@angular/animations": "^5.0.1",
"@angular/cdk": "^5.0.0-rc0",
"@angular/common": "^5.0.1",
"@angular/compiler": "^5.0.1",
"@angular/compiler-cli": "^5.0.1",
"@angular/core": "^5.0.1",
"@angular/forms": "^5.0.1",
"@angular/http": "^5.0.1",
"@angular/material": "^5.0.0-rc0",
"@angular/platform-browser": "^5.0.1",
"@angular/platform-browser-dynamic": "^5.0.1",
"@angular/platform-server": "^5.0.1",
"@angular/router": "^5.0.1",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.5",
"angular2-moment": "^1.7.0",
"angular2-text-mask": "^8.0.4",
"angularfire2": "5.0.0-rc.3",
"ap-angular2-fullcalendar": "^1.3.5",
"bootstrap": "4.0.0-beta",
"core-js": "^2.4.1",
"firebase": "4.6.2",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"moment": "^2.19.3",
"ng2-date-picker": "^2.6.2",
"popper.js": "^1.12.9",
"rxjs": "^5.4.2",
"sweetalert2": "^7.0.9",
"typescript": "^2.6.1",
"zone.js": "^0.8.14"
,
"devDependencies":
"@angular/cli": "^1.5.3",
"@angular/compiler-cli": "^4.2.4",
"@angular/language-service": "^4.2.4",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "~3.2.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~2.3.3"
【问题讨论】:
根目录下是否有package.lock.json
文件
以管理员身份运行
@Cristophs0n 不,我确实寻找了一个 package.lock.json,但从未找到,我以管理员身份运行此命令。我可以从其他项目运行 npm start 并且没有问题,所以这里主要是头疼
尝试关闭所有其他程序,例如您的 IDE 等。看起来另一个进程正在锁定您的文件
@Cristophs0n 缩小到特定机器上的权限现在是我的猜测,因为我无法使用 npm 安装任何东西,甚至无法运行和完成任何 npm 命令
【参考方案1】:
有两种解决方案
-
您可以运行“npm cache clean”
您在管理员模式下运行命令提示符。
【讨论】:
我只是在管理员模式下再次执行此操作。发布错误图片【参考方案2】:我遇到了同样的问题。缓存清理和更新 npm 后一切正常。所以尝试运行:
npm 缓存清理 --force
npm install -g npm@latest
【讨论】:
npm cache clean --force 在 AppData Roaming 文件夹中抛出权限错误【参考方案3】:试试下面的setps,希望对你有帮助。
更新 Node.js
命令提示符下的 npm cache clean 命令,以管理员身份尝试
检查节点代理设置,如果坚持删除它们
npm config delete http-proxy
npm config delete https-proxy
【讨论】:
【参考方案4】:试试npm cache clean
快速简单:)
【讨论】:
【参考方案5】:自行安装出错的模块。
在花费了数小时并尝试了所有可能的建议后,我发现安装错误提到的特定模块全局解决了问题:
例如: npm 错误! 错误:EPERM:不允许操作,取消链接 'Path\Docume nts\AngularProjects\my-sample-app333\node_modules.staging@angular\core-a3d1aa4 8\ bundles\core.umd.js
我运行:npm install -global @angular/core
它为我修复了它!终于!!
【讨论】:
【参考方案6】:我尝试了上述所有方法,但对我不起作用。 我复制了 package.json 的所有内容并删除了该文件。然后,我创建了一个新文件并复制了所有文件并将其保存为 package.json 这解决了一切
【讨论】:
【参考方案7】:100% 确定
首先删除项目文件夹。例如:myapp1
然后运行 ->npm cache clean --force 命令
重新输入之前出错的命令。
【讨论】:
【参考方案8】:macOS 卡塔利娜,
npm init
出错了
operation not permitted, uv_cwd
第 1 步:转到父文件夹
cd ../
第 2 步:再次转到您的项目文件夹,
cd your-project-folder
就是这样。它有效。
【讨论】:
我不知道为什么会这样,但确实如此!谢谢:)【参考方案9】:我也遇到了同样的问题,但是一旦我从项目中删除了 node_modules 文件夹以及 package-lock.json ,然后我再次使用 @ 重新安装了整个东西987654323@ 它对我有用。
【讨论】:
以上是关于Npm 安装错误 EPERM 操作不允许的主要内容,如果未能解决你的问题,请参考以下文章
npm publish 导致'错误:EPERM:不允许操作,取消链接...',errno -4048