Louis
Louis

Reputation: 2618

Can't switch to another node version

I am trying to use node v0.12 to use with ionic.

But I can't:

$ nvm ls
 v0.10.33
 v0.12.7
 ->    system
 default -> 0.12 (-> v0.12.7)
 stable -> 0.12 (-> v0.12.7) (default)
$ nvm alias default 0.12
 default -> 0.12 (-> v0.12.7)
$ node --version
 v0.10.25

I am on Ubuntu 14.04.

Can you help please ?

Upvotes: 0

Views: 345

Answers (1)

itai
itai

Reputation: 284

I really recommend you to switch from nvm to n module which works better as long as you don't need version older than 0.8.6 I don't think you will encounter problems with it.

npm install -g n 

then

n 0.12

Upvotes: 1

Related Questions