-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
Linux node version 0.10.12 does not contain .configure or make files #2885
Comments
If you download a tarball that contains (an OS and) an architecture in the filename, that indicates it's a binary tarball and not a source tarball. So the compilation has already been done for you. For binary tarballs, you just have to copy the contents to some appropriate location on your system. For example, if you wanted to install node globally, you might extract the tarball to However v0.10.12 is pretty old. If you have a specific need to stay on the v0.10 branch, you should install v0.10.40 instead. Otherwise, the latest stable branch is v4.x (v4.0.0 being the latest release as of this writing). |
Hi Brian, Ok Thanks. Didn’t realize that. Jeff From: Brian White [mailto:[email protected]] If you download a tarball that contains (an OS and) an architecture in the filename, that indicates it's a binary tarball and not a source tarball. So the compilation has already been done for you. You just have to copy the contents to some appropriate location on your system. For example, if you wanted to install node globally, you might extract the tarball to /usr/local (e.g. curl http://nodejs.org/dist/latest/node-v0.10.12-linux-x64.tar.gz | tar zx --strip=1 -C /usr/local). However v0.10.12 is pretty old. If you have a specific need to stay on the v0.10 branch, you should install v0.10.40 instead. Otherwise, the latest stable branch is v4.x (v4.0.0 being the latest release as of this writing). — |
See #2338. |
Let us know if you have any more questions. :) |
Hi,
I just installed node-v0.10.12-linux-x64.tar.gz on my Linux box.
The readme states to run the .configure and make files, but, they are not there.
How can I get a copy of what I'm missing and ensure that everything else is there that I need?
Thanks,
Jeff
The text was updated successfully, but these errors were encountered: