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 trialFynn Lehnert
15,244 Pointslotsa errors thrown on npm install
I get lots of errors when installing dependecies. this one for example
Can not download file from https://raw.githubusercontent.com/sass/node-sass-binaries/v2.1.1/darwin-x64-node-4.1/binding.node
therefor node-sass cant be installed.
also node-gyp
cant be found.
this makes it impossible for me to compile the project with ~ gulp
how can i manually fix this?
2 Answers
Arturo Alviar
15,739 PointsI had some errors when building too. I just updated gulp-sass by doing:
$ npm install -S gulp-sass@latest
Fynn Lehnert
15,244 Pointsthats a clever one! thank you arturo!