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 Deploy your App to GitHub Pages with Gulp

lotsa 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
Arturo Alviar
15,739 Points

I had some errors when building too. I just updated gulp-sass by doing:

$ npm install -S gulp-sass@latest

thats a clever one! thank you arturo!