Cannot install Meteor 1.10.2

Hi I’m trying to install Meteor 1.10.2 and I getting errors installing fourseven:scss@4.10.0. I have tried

meteor update --release 1.10.2

And I get the following message

While loading package fourseven:scss@4.10.0:
error: Command failed:
/home/apollinaire/.meteor/packages/meteor-tool/.1.10.2.121ry7f.gueme++os.linux.x86_64+web.browser+web.browser.legacy+web.cordova/mt-os.linux.x86_64/dev_bundle/bin/npm
rebuild --update-binary
Cannot download
"https://github.com/sass/node-sass/releases/download/v4.9.3/linux-x64-72_binding.node": 

HTTP error 404 Not Found

Hint: If github.com is not accessible in your location
try setting a proxy via HTTP_PROXY, e.g. 

export HTTP_PROXY=http://example.com:1234

or configure npm proxy via

npm config set proxy http://example.com:8080
gyp info it worked if it ends with ok
gyp verb cli [
gyp verb cli

Does anybody know why is this happening ?
Thank you for your help :slight_smile:

The file does not exist: https://github.com/sass/node-sass/releases/tag/v4.9.3

The issue is that fourseven:scss installs it’s own version of node-sass, which has very specific Node version compatibility because it’s a native addon written in c++

Have a look at the version compatibility table here: https://github.com/Meteor-Community-Packages/meteor-scss
And check that the version of fourseven:scss matches a compatible meteor version.

It looks like you’re using 4.10.0 and you need >4.12.0

The alternative is to remove it, update and install the atmosphere package again, that way it won’t get in the way of the updater’s dependency resolver

1 Like