On Monday, October 21, 2013 6:28:51 AM UTC-4, Richa wrote: > > wget http://nodejs.org/dist/v0.10.21/node-v0.10.21-linux-x64.tar.gz >
You want this instead, for the source code: wget http://nodejs.org/dist/v0.10.21/node-v0.10.21.tar.gz The tarball you downloaded contains a pre-compiled binary. If you want to use that instead of compiling from source, you might do something like this: curl http://nodejs.org/dist/latest/node-v0.10.21-linux-x64.tar.gz | tar zx --strip=1 -C /usr/local Or if you only want to install it locally, you might do something like this: mkdir -p ~/opt && curl http://nodejs.org/dist/latest/node-v0.10.19-linux-x64.tar.gz | tar zx --strip=1 -C ~/opt Then just put ~/opt/bin in your $PATH. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
