I referred to this already answered question, but it wasnt of any help. Can you tell me what I'm missing?
I'm trying to install node.js on my Debian 8.0. According to this github article, I followed. I have the tarball file downloaded, extracted it, but when I tried to run ./configure
inside the extracted tarball directory, it said
bash: ./configure: No such file or directory
I've checked the per-requisites that the site gave, I had all of them installed. Am I missing something here?
configure
script doesn't exist?ls configure
what's the output? If it exists and if you are not able to run then add executable permission to that file.chmod +x configure
. If the configure doesn't exist at all then runautoreconf -v -f --install
and then run.\configure
. Better send your source tree structure.So that I can see what is missing.root@shazLaptop:~/Downloads/node-v4.1.1-linux-x64# ls configure ls: cannot access configure: No such file or directory root@shazLaptop:~/Downloads/node-v4.1.1-linux-x64# autoreconf -v -f --install autoreconf: 'configure.ac' or 'configure.in' is required root@shazLaptop:~/Downloads/node-v4.1.1-linux-x64# .\configure bash: .configure: command not found