이 문Windows 머신에서 다중 패키지 npm 설치를위한 올바른 구문은 무엇입니까?
( here에서 촬영)npm install --save @angular2-material/{core,button,card}
윈도우 PowerShell을에
At line:1 char:44
+ npm install --save @angular2-material/{core,button,card}
+ ~
Missing argument in parameter list.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : MissingArgument
산출과 윈도우 콘솔에
npm ERR! addLocal Could not install D:\VST\ngMaterial1\@angular2-material\{core,button,card}
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "D:\\nodejs\\node.exe" "D:\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "--save" "@angular2-material/{core,button,card}"
npm ERR! node v5.10.1
npm ERR! npm v3.8.3
npm ERR! path D:\VST\ngMaterial1\@angular2-material\{core,button,card}
npm ERR! code ENOENT
npm ERR! errno -4058
npm ERR! syscall open
npm ERR! enoent ENOENT: no such file or directory, open 'D:\VST\ngMaterial1\@angular2-material\{core,button,card}'
npm ERR! enoent ENOENT: no such file or directory, open 'D:\VST\ngMaterial1\@angular2-material\{core,button,card}'
npm ERR! enoent This is most likely not a problem with npm itself
npm ERR! enoent and is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! Please include the following file with any support request:
npm ERR! D:\VST\ngMaterial1\npm-debug.log
를 산출 (--save
인수가 따옴표로 묶여있을 때 PowerShell에도 있음).
Windows 머신에서 다중 패키지 npm 설치의 올바른 구문은 무엇입니까?
그런 설치 지침은 단순히 그대로 적용되는 것이 아니라 해석 (확장) 된 것으로 보입니다. – CalvinDale