Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warning: node-5.0.0 already installed, it's just not linked

I am trying to install node js. I am getting the following error . Any idea?

brew install node
Warning: node-5.0.0 already installed, it's just not linked

Thanks

like image 664
Warrior Avatar asked Nov 11 '15 15:11

Warrior


3 Answers

You can run the below command to override all the conflicts.

brew link --overwrite node
like image 57
Avinash Sivaraman Avatar answered Oct 21 '22 18:10

Avinash Sivaraman


You should be able to run:

brew link node

What you're doing is telling Brew to create a symlink for the node executable to the /usr/bin (or /usr/local/bin) directory, as far as I am aware.

like image 35
CoderLeo Avatar answered Oct 21 '22 18:10

CoderLeo


For this issue run

brew link homebrew/versions/node<version no>

To know why, you can surf here.

like image 3
Rohini Choudhary Avatar answered Oct 21 '22 18:10

Rohini Choudhary