在运行lerna bootstrap时执行错误操作npm-在Windows上执行提升命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在运行lerna bootstrap时执行错误操作npm-在Windows上执行提升命令相关的知识,希望对你有一定的参考价值。
每当我运行lerna bootstrap --hoist
或lerna bootstrap
时,我的Windows机器上都会出现以下错误。
我已经尝试过npm login
并强制清除了npm缓存,但是似乎没有任何作用。
npm ERR! code EPERM
npm ERR! errno -4048
npm ERR! syscall unlink
npm ERR! Error: EPERM: operation not permitted, unlink 'E:\Devfolio_work\ethglobal-devfolio\node_modules\.staging\typescript-ebd093cf\lib\typescriptServices.js'
npm ERR! [Error: EPERM: operation not permitted, unlink 'E:\Devfolio_work\ethglobal-devfolio\node_modules\.staging\typescript-ebd093cf\lib\typescriptServices.js']
npm ERR! cause:
npm ERR! Error: EPERM: operation not permitted, unlink 'E:\Devfolio_work\ethglobal-devfolio\node_modules\.staging\typescript-ebd093cf\lib\typescriptServices.js'
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'unlink',
npm ERR! path:
npm ERR! 'E:\\Devfolio_work\\ethglobal-devfolio\\node_modules\\.staging\\typescript-ebd093cf\\lib\\typescriptServices.js' ,
npm ERR! stack:
npm ERR! 'Error: EPERM: operation not permitted, unlink \'E:\\Devfolio_work\\ethglobal-devfolio\\node_modules\\.staging\\typescript-ebd093cf\\lib\\typescriptServices.js\'',
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'unlink',
npm ERR! path:
npm ERR! 'E:\\Devfolio_work\\ethglobal-devfolio\\node_modules\\.staging\\typescript-ebd093cf\\lib\\typescriptServices.js',
npm ERR! parent: 'root'
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 (though this is not recommended).
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\hp\AppData\Roaming\npm-cache\_logs\2019-01-09T16_55_24_342Z-debug.log
lerna.json
"packages": [
"packages/*"
],
"version": "independent"
我的环境
lerna --version
3.5.1
npm --version
6.4.1
node --version
10.5.0
操作系统版本
Windows 10 1709
答案
我终于找到了解决方案,这似乎是Windows的问题,只需在当前工作目录中的admin命令提示符下运行此命令,它就会起作用。
另一答案
这可能与lerna的本地安装或全局安装有关。对我来说,运行lerna bootstrap
,等待EPERM
错误,关闭终端并再次运行lerna bootstrap
会有所帮助。
另一种可行的方法是运行lerna clean
。
还请注意所有正在运行的脚本-可以锁定某些依赖项,因此如果没有管理员权限,您将无法删除它们。特别是观看脚本。
我在Windows上使用git bash。
以上是关于在运行lerna bootstrap时执行错误操作npm-在Windows上执行提升命令的主要内容,如果未能解决你的问题,请参考以下文章
带有监视任务的 Lerna - lerna run --parallel