请帮我在ubuntu中安装phonegap。
我已经安装了节点,但显示npm缺失...
syam@shyam-Veriton-Series:~$ npm install -g phonegap
The program 'npm' is currently not installed. To run 'npm' please ask your administrator to install the package 'npm'
答案 0 :(得分:0)
您必须首先安装nodeJS,然后安装npm,然后才能安装phonegap:
sudo apt-get install nodejs
sudo apt-get install npm
npm install -g phonegap
答案 1 :(得分:0)
您说您已安装节点,但尚未安装npm
。
我假设您安装了这样的节点:
sudo apt-get update
sudo apt-get install nodejs
npm可以用同样的方式安装:
sudo apt-get install npm
这个tutorial提供了在Ubuntu上安装Node.js的完整指南。
安装npm
后,您应该能够使用原始命令安装phonegap:
npm install -g phonegap