所以,今天我想安裝快車的解決方案,我不斷收到此錯誤:NPM的NodeJS無法安裝快遞,我已經嘗試了SO
npm ERR! Required: {"node":">= 0.8.0"}
npm ERR! Actual: {"npm":"1.1.4","node":"0.6.12"}
我已經卸載的節點,並重新安裝它它仍然說同樣的事情。我已經更新了所有內容,但仍輸出相同的錯誤。
所以,今天我想安裝快車的解決方案,我不斷收到此錯誤:NPM的NodeJS無法安裝快遞,我已經嘗試了SO
npm ERR! Required: {"node":">= 0.8.0"}
npm ERR! Actual: {"npm":"1.1.4","node":"0.6.12"}
我已經卸載的節點,並重新安裝它它仍然說同樣的事情。我已經更新了所有內容,但仍輸出相同的錯誤。
在Installing NodeJS guide上提供了一個存儲庫,其中包含最新版本的NodeJS。請嘗試以下方法卸載節點的當前版本已安裝並安裝最新版本:
sudo apt-get purge nodejs
sudo apt-get update
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
這應該同時安裝NPM和的NodeJS
http://pastebin.com/APxv0xRt –
我假設這是使用上述命令重新安裝nodejs後收到的錯誤?如果是這樣,請運行 'node -v'和'npm -v' 這兩個命令並輸出 – Reidsy
節點爲0.10.20和npm爲1.3.11 –
已經安裝了最新的節點或NPM?
sudo apt-get install npm
npm install -g express
,讓您的快遞項目:
express myapp
當你運行你明白了什麼:'''節點-v''' – doremi
更新Node.js的你正在運行一個非常舊的版本。 – Brad