npm install --no-bin-links
作为尝试解决不同问题的一部分,我正在尝试运行该命令。最初的问题来自我试图安装 aldeed:simple-schema 包,这导致了关于缺少 simpl-schema(没有 e)依赖项的错误。我继续跑npm install --save simpl-schema
然后我的项目继续崩溃,并给出一个错误:
Error: EPERM: operation not permitted, mkdir 'D:\Code\DB-MM- Test\node_modules\@types'
npm ERR! { [Error: EPERM: operation not permitted, mkdir 'D:\Code\DB-MM-Test\node_modules\@types']
npm ERR! cause:
npm ERR! { Error: EPERM: operation not permitted, mkdir 'D:\Code\DB-MM-Test\node_modules\@types'
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'mkdir',
npm ERR! path: 'D:\\Code\\DB-MM-Test\\node_modules\\@types' },
npm ERR! stack:
npm ERR! 'Error: EPERM: operation not permitted, mkdir \'D:\\Code\\DB-MM-Test\\node_modules\\@types\'',
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'mkdir',
npm ERR! path: 'D:\\Code\\DB-MM-Test\\node_modules\\@types',
npm ERR! parent: 'DB-MM-Test' }
我在网上四处寻找,但找不到任何有用的东西。似乎远程连接的唯一问题是:这篇文章
在我看来,它正在尝试创建一个没有名称的目录。