mac安装appium时执行appium-doctor命令提示command not found: appium-doctor

今天安装appium,最后执行appium-doctor命令检查文件时一直报错:command not found: appium-doctor。

 

百度了一圈也没解决,看到一个教程说要安装一下appium-doctor,参考文档:https://www.jianshu.com/p/796a68ef3204

于是我执行了这个命令:

npm install appium-doctor

然后兴高采烈又去执行了appium-doctor,结果还是不行……

又一搜,奥,可以试试全局安装呐!参考文档:https://www.jianshu.com/p/f797f79f2ff4

好嘞,试试~

npm install -g appium-doctor

结果又报错了,不开心……

mac安装appium时执行appium-doctor命令提示command not found: appium-doctor_第1张图片

又一顿百度,让用cnpm install,行吧再试试,结果又error了,一看是权限的问题,管他三七二十一

执行了这个命令:

sudo cnpm install -g appium-doctor

诶,可以了……

你可能感兴趣的:(appium,软件测试)