-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to install on Ubuntu 14.04 trusty
#9
Comments
I fixed the problem by first removing |
thanks for reporting this @LinusU, we're figuring out the cleanest way to deal with this and will have a fix in soon(ish), there is likely a similar problem on debian too |
yep same problem on debian, I've removed |
Ubuntu once again. Tried to follow instructions from here: https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager#debian-and-ubuntu-based-linux-distributions and got: Reading package lists... Done Confirming "trusty" is supported...+ curl -sLf -o /dev/null 'https://deb.nodesource.com/node/dists/trusty/Release' Your distribution, identified as "trusty", is not currently supported, please contact NodeSource at https://github.com/nodesource/distributions/issues if you think this is incorrect or would like your distribution to be considered for support$ uname -a it's Ubuntu 14.04 UPD. Solved. I tried the command as provided at the site, and correct way is just sudo to root shell and run setup from there. Maybe this has something to do with recent bash patches? |
Are you behind a firewall or something that's blocking Standard way of running it is as root using
|
@astesin take a look at issue #20 if you are behind a proxy, like in many corporate environments. Basically try to add -E to the sudo, or run the setup script in the pull request #22 without sudo. The latter should also produce the error message from the curl call failing allowing you to pinpoint the issue if it's not the proxy issue |
I was having the same error as @astesin on Ubuntu 14.04. I'm behind a corporate proxy and I got it to work by using One issue I had- I was only exporting
|
|
for me - the underlying problem was the following:
Installing the package |
nodejs-legacy
provides a symlink from/usr/bin/node
to/usr/bin/nodejs
which is very helpful if you are used to Node.js being installed asnode
.I think that the correct solution is to mark this package as conflicting with
nodejs-legacy
and, if nodesource is providing the symlink, mark it as replacing.The text was updated successfully, but these errors were encountered: