matthiasunt
matthiasunt

Reputation: 719

Unable to install Cordova CLI

When I'm trying to install the Cordova CLI with "sudo npm install -g cordova", everything seems to work fine:

/usr/local/bin/cordova -> /usr/local/lib/node_modules/cordova/bin/cordova
[email protected] /usr/local/lib/node_modules/cordova
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

But my system information stays the same:

Cordova CLI: Not installed
Ionic Framework Version: 2.0.0-beta.6
Ionic CLI Version: 2.0.0-beta.25
Ionic App Lib Version: 2.0.0-beta.15
ios-deploy version: 1.8.6 
ios-sim version: 5.0.8 
OS: Mac OS X El Capitan
Node Version: v4.4.4
Xcode version: Xcode 7.3.1 Build version 7D1014 

I also tried to install a specific package of the Cordova CLI with "npm install -g [email protected]" and to unistall and reinstall Cordova, but I still get:

Cordova CLI: Not installed

Upvotes: 0

Views: 1103

Answers (2)

CNV
CNV

Reputation: 21

Using nvm 8.1.3 and then installing Cordova with sudo npm install -g cordova command worked for me.

Upvotes: 0

Gandhi
Gandhi

Reputation: 11935

I suggest you to have a look at this link.It's mostly a permission issue and sudo should do the trick. Try executing the following command,

sudo ionic info

Hope it helps.

Upvotes: 1

Related Questions