FSFisGOOD
FSFisGOOD

Reputation: 183

phonegap installed using npm in terminal has no output

I'm trying to install phonegap. in phonegap.com/install it says:

sudo npm install -g phonegap

so I did it. After lots of package download it installs phonegap. when I run phonegap command, nothing happens:

phonegap

or

phonegap -v

nothing happens.

Upvotes: 1

Views: 707

Answers (1)

FSFisGOOD
FSFisGOOD

Reputation: 183

Found the solution at here I should've done this, before installing phonegap.

sudo npm update npm -g
sudo npm install n -g
sudo n stable

Upvotes: 5

Related Questions