当我在ubuntu-16.04上运行“ sudo npm install -g appium ”时出现以下错误
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! appium-chromedriver@4.0.0 install: `node install-npm.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the appium-chromedriver@4.0.0 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/anjan-349/.npm/_logs/2018-06-04T09_55_11_739Z-debug.log
如果你知道请帮助我。在此先感谢。
答案 0 :(得分:7)
sudo npm install -g appium --unsafe-perm = true
您将无法在同一终端上使用appium,您将遇到错误“找不到命令”。因此,请关闭当前终端并打开一个新终端。
答案 1 :(得分:4)
sudo npm install -g appium --unsafe-perm=true --allow-root
这对我来说很有帮助,安装完成后,我就可以在同一终端上运行Appium。