2
我必須在沒有root權限的計算機上安裝npm,由於缺少依賴關係,我將產生大量錯誤。我附上了屏幕。任何想法?謝謝。在沒有sudo的情況下安裝npm
我必須在沒有root權限的計算機上安裝npm,由於缺少依賴關係,我將產生大量錯誤。我附上了屏幕。任何想法?謝謝。在沒有sudo的情況下安裝npm
從伊薩克,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
花式安裝(UNIX)
在https://www.npmjs.com/install.sh有一個非常強大的安裝腳本。你可以下載並運行它。
下面是使用curl一個例子:
curl -L https://npmjs.com/install.sh | sh
** ** NPM是捆綁在一起的Node.js,沒有必要單獨安裝。 – 2015-02-10 11:31:14
@FrancyGrillo這應該是被接受的答案。 – Booligoosh 2017-10-25 11:27:19