私はウィキで述べた次のコマンドを実行することにより、CentOSの5/cPanelのサーバー上のNode.jsをインストールするために行くべきディレクトリに思ったんだけど:node.jsはどこにインストールすればよいですか?
git clone --depth 1 https://github.com/joyent/node.git
cd node
git checkout origin/v0.4 # optional. Note that master is unstable.
export JOBS=2 # optional, sets number of parallel commands.
mkdir ~/local
./configure --prefix=$HOME/local/node
make
make install
echo 'export PATH=$HOME/local/node/bin:$PATH' >> ~/.profile
source ~/.profile
お知らせください。マルチユーザシステムのための
必要な場所にnode.jsをインストールします。それはパスにきれいに追加する必要があります。ソースコードを入手し、設定し、makeし、make installしてください。 Btw私は0.4.8を推奨します – Raynos