Skip to content
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

Support for Ubuntu 15.04 "vivid" #66

Closed
funnylookinhat opened this issue Feb 10, 2015 · 2 comments
Closed

Support for Ubuntu 15.04 "vivid" #66

funnylookinhat opened this issue Feb 10, 2015 · 2 comments

Comments

@funnylookinhat
Copy link

A lot of devs ( myself included ) have begun moving to ubuntu+1 ( 15.04 codenamed "vivid" ) - could you add support for that release to your deb scripts?

@rvagg
Copy link
Contributor

rvagg commented Feb 10, 2015

@funnylookinhat no, we won't be adding this till it goes stable in April, it's too much of a moving target. But, you should be able to manually add it in by aliasing utopic.

apt-get update && apt-get install curl apt-transport-https -y
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
echo 'deb https://deb.nodesource.com/node utopic main' > /etc/apt/sources.list.d/nodesource.list
echo 'deb-src https://deb.nodesource.com/node utopic main' >> /etc/apt/sources.list.d/nodesource.list
apt-get update && apt-get install nodejs -y
node -v && npm -v

Additionally, to support building native add-ons:

apt-get install build-essential python -y

To confirm a full, working installation:

curl -sL https://deb.nodesource.com/test | bash -

@funnylookinhat
Copy link
Author

@rvagg That works! Thanks for the suggestion.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants