2015-02-09 131 views

回答

2

從伊薩克,node.js中的貢獻者之一:

echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc 
    . ~/.bashrc 
    mkdir ~/local 
    mkdir ~/node-latest-install 
    cd ~/node-latest-install 
    curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 
    ./configure --prefix=~/local 
    make install 
    curl https://www.npmjs.org/install.sh | sh 

對於更詳細的信息: https://gist.github.com/isaacs/579814

+0

** ** NPM是捆綁在一起的Node.js,沒有必要單獨安裝。 – 2015-02-10 11:31:14

+0

@FrancyGrillo這應該是被接受的答案。 – Booligoosh 2017-10-25 11:27:19

0

花式安裝(UNIX)

https://www.npmjs.com/install.sh有一個非常強大的安裝腳本。你可以下載並運行它。

下面是使用curl一個例子:

curl -L https://npmjs.com/install.sh | sh 
相關問題