installing node.js on ubuntu 10.04
It was easy to install node.js on my ubuntu 10.04 below.
./configure make make install
As additional information, I didn't install around ssl library. I got an error like below.
Checking for function SSL_library_init : not found Checking for header openssl/crypto.h : not found
Then I installed libssl-dev by running following command.
$ sudo apt-get install libssl-dev
Yes, I installed node.js so far.
$ node -v v0.2.5
Comments