您好我正在使用ionic来构建混合html应用程序。
我正在运行的每个命令都会收到以下警告:
******************************************************
Upgrade warning - for the CLI to run correctly,
it is highly suggested to upgrade the following:
Please update your Node runtime to version >=0.12.x
******************************************************
如果可以,请告知我应该如何更新节点运行时版本
答案 0 :(得分:19)
这只是要求升级Node
。我通常将nvm
与命令nvm install <version> && nvm use <version>
一起使用,或者您可以使用节点帮助程序,如下所示:
sudo npm cache clean -f
sudo npm install -g n
sudo n stable // for stable version
sudo n 0.12.7 // for specific version like v0.12.7
// check the node version after install
node -v
答案 1 :(得分:2)
在Ubuntu或Debian上安装Node.js v5.x:
# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install -y nodejs
# Using Debian, as root
curl -sL https://deb.nodesource.com/setup_5.x | bash -
apt-get install -y nodejs
答案 2 :(得分:1)
这取决于您如何在计算机上安装node.js
。您可以转到https://nodejs.org/并获取更新版本,也可以使用Node Version Manager (NVM)
一次控制多个节点版本。
我建议使用NVM,因为这样可以避免使用sudo安装nodejs,这可能会导致其他问题。
答案 3 :(得分:1)
我使用命令:
sudo npm cache clean
sudo npm install -g cordova
sudo npm install -g ionic
它适用于我。