Reputation: 9
I code ng new hello-world
but after I built it, I got this:
[email protected] postinstall C:\Users\Admin\Desktop\Test Code\AngFirst\hello-world\node_modules\babel-runtime\node_modules\core-js node scripts/postinstall || echo "ignore"
[email protected] postinstall C:\Users\Admin\Desktop\Test Code\AngFirst\hello-world\node_modules\karma\node_modules\core-js node scripts/postinstall || echo "ignore"
@angular/[email protected] postinstall C:\Users\Admin\Desktop\Test Code\AngFirst\hello-world\node_modules@angular\cli node ./bin/postinstall/script.js
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
added 1011 packages from 1041 contributors and audited 19005 packages in 447.952s found 0 vulnerabilities
'git' is not recognized as an internal or external command, operable program or batch file.
Upvotes: 0
Views: 358
Reputation: 20132
This error
'git' is not recognized as an internal or external command, operable program or batch file.
Seem like your computer cant find git instance so I would recommend install git here
After your install git done
Try to dele node_modules folder and package-lock.json and run npm i
again
Upvotes: 1