pythonがインストールされていることを確認し、2.6+が推奨されています.
インストールの他の依存性:sudo appt-get install g++curl libssl-dev apphe 2-utils インストールgit:sudo ap-get install git-core ダウンロードnodejs:git clonegit://github.com/joyent/node.git40 Mぐらいです.です.
ダウンロードのディレクトリを見つけました.gitは現在の最新の安定バージョンを出しています.git checkout v 0.4.12 ディレクトリmkdir-pを作成します. $ホーム/local/node nodejsでカバンをダウンロードします. ./configre--prefix=$HOME/local/nodeいくつかのファイルnot foundに出会うかもしれません.
make make install 環境変数の構成:sudo gedit/etc/profileは、次の2つの行を挿入します. export PATH="HOME/local/node/bin:$PATH" export NODE_PATH="$HOME/local/node:$HOME/local/node/lib/node_modules NPMをインストールし、必要に応じて、対応するパッケージをインストールします.例えば、express:npm install express テストvar http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello NodeJS');
}).listen(8124, "127.0.0.1");
console.log('Server running at http://127.0.0.1:8124/');