我是网络开发的新手。运行以下命令后,我收到此错误消息:npm install。
愿有人可以帮助我。
消息:
PS C:\Users\Giu\node_modules\npm> npm install
npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
> npm@6.4.1 prepare C:\Users\Giu\node_modules\npm
> node bin/npm-cli.js --no-audit --no-timing prune --prefix=. --no-global && rimraf test/*/*/node_modules && make -j4 doc
up to date in 4.661s
Der Befehl "rimraf" ist entweder falsch geschrieben oder
konnte nicht gefunden werden. English: The command "rimraf" is either wrong written or it cant be find.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! npm@6.4.1 prepare: `node bin/npm-cli.js --no-audit --no-timing prune --prefix=. --no-global && rimraf test/*/*/node_modules && make -j4 doc`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the npm@6.4.1 prepare script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Giu\AppData\Roaming\npm-cache\_logs\2018-10-16T06_40_26_185Z-debug.log
消息结束
谢谢!
答案 0 :(得分:1)
要安装npm,请下载node.js,它已经与之一起安装。
CLICK HERE
要从package.json下载依赖项,请使用npm install
或npm i
。
要首先使用npm init
来使依赖,并填写足够的详细信息以使您具有项目依赖性。
答案 1 :(得分:0)
要安装npm,请下载node.js,npm也将安装check this link
然后您可以像这样npm install -g @angular/cli@latest
然后使用此命令ng new projectName
和check this link
然后移至项目文件夹cd projectName
然后使用npm install
最后,您可以运行项目并使用ng serve --open