Sangyeon Kim
Sangyeon Kim

Reputation: 39

npm install -g @vue/cli but INSTALL ERROR

This is my environment..

Below is my error..

npm WARN deprecated @hapi/[email protected]: This version has been deprecated and is no longer supported or maintained
npm WARN deprecated @hapi/[email protected]: This version has been deprecated and is no longer supported or maintained
npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated [email protected]: this library is no longer supported
npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated @hapi/[email protected]: Moved to 'npm install @sideway/address'
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated @hapi/[email protected]: This version has been deprecated and is no longer supported or maintained
npm WARN deprecated @hapi/[email protected]: Switch to 'npm install joi'

changed 943 packages, and audited 944 packages in 16s

59 packages are looking for funding
  run `npm fund` for details

13 vulnerabilities (3 moderate, 10 high)

Some issues need review, and may require choosing
a different dependency.

Run `npm audit` for details.

I try again and again.. but it's not work. Please help me!!

Upvotes: 3

Views: 15505

Answers (3)

Mailaburacha
Mailaburacha

Reputation: 1

For Mac users

First, Uninstall angular/cli: sudo npm uninstall -g @angular/cli

Then, go to https://www.brew.sh/ and copy the link below Install Homebrew and paste it to the terminal and hit enter.

Then, type: brew install angular-cli and hit enter.

Finally, check the version: ng --version

Upvotes: 0

sebastiano
sebastiano

Reputation: 1

I have resolved in this method:

  1. npm uninstall –g @ionic/cli
  2. install nodejs
  3. Reinstall again: npm install –g @ionic/cli

Upvotes: 0

EmmanuelBeziat
EmmanuelBeziat

Reputation: 734

We miss a few infos here; you say that you get an install error, but these are just warnings about deprecated dependencies. Moreover, these dependencies doens’t look much related to @vue/cli itself…

Are these globally installed dependencies? You might wanna use npm-check and use it globally to see if these are old global dependencies that you should get uptodate (or get rid of):

$ npm-check -ug

Upvotes: 1

Related Questions