Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Sharanya Venkat
Sharanya Venkat
7,222 Points

How to install a specific version of node using homebrew ?

I want to install node version 0.10.9 using brew. Doing 'brew install node' installs the latest version. Please help.

1 Answer

Hey Sharanya,

brew search node <---- to search the versions of node you're able to download

brew unlink node <----- use this to unlink your current version of node

brew install node010 <---- install
Sharanya Venkat
Sharanya Venkat
7,222 Points

Thank you David. I will give this a try :)

No prob. Let me know how it goes.

Sharanya Venkat
Sharanya Venkat
7,222 Points

This works.! I had no problem in installing node version 0.10.xx. Thank you for your timely help :)

nice