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 trialSharanya Venkat
7,222 PointsHow 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
David Tonge
Courses Plus Student 45,640 PointsHey 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
7,222 PointsSharanya Venkat
7,222 PointsThank you David. I will give this a try :)
David Tonge
Courses Plus Student 45,640 PointsDavid Tonge
Courses Plus Student 45,640 PointsNo prob. Let me know how it goes.
Sharanya Venkat
7,222 PointsSharanya Venkat
7,222 PointsThis works.! I had no problem in installing node version 0.10.xx. Thank you for your timely help :)
David Tonge
Courses Plus Student 45,640 PointsDavid Tonge
Courses Plus Student 45,640 Pointsnice