我需要安裝的版本的node.js 4.0.0 我嘗試這樣做:如何在Windows上安裝舊版本的node.js?
npm install -g [email protected]
但我得到這個消息:NPM不被識別爲一個內部或外部命令,可操作的程序或批處理文件
我需要安裝的版本的node.js 4.0.0 我嘗試這樣做:如何在Windows上安裝舊版本的node.js?
npm install -g [email protected]
但我得到這個消息:NPM不被識別爲一個內部或外部命令,可操作的程序或批處理文件
轉到here並找到要安裝的版本,然後下載正確的msi文件並運行安裝程序。您不能通過運行此命令來安裝節點,並且您收到的錯誤是指出npm不在您的路徑上,這表明機器目前沒有安裝節點。
您可以使用Nodist來實現此目的。 Download it from here.
用法:
nodist List all installed node versions.
nodist list
nodist ls
nodist <version> Use the specified node version globally (downloads the executable, if necessary).
nodist latest Use the latest available node version globally (downloads the executable, if necessary).
nodist add <version> Download the specified node version.
更多Nodist命令here
我有找到正確的MSI文件的問題。我需要降級Node版本。 6.6.0版Webstorm存在問題。 –
我已更新鏈接,因爲它已更改,所有舊版本都在那裏。 –
您提供的鏈接中沒有msi安裝程序。只有zip和7z檔案與一堆可執行文件和一些其他的東西,但沒有.msi文件 – dKab