我不知道在哪個目錄,我應該去通過執行在Wiki中提到以下命令一個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你想要的地方。它應該將自己添加到路徑很好。只需獲取源代碼,配置,製作,安裝即可。順便說一句我推薦0.4.8 – Raynos