Installing appium on macOS sierra 10.12.3 [closed]

谁说我不能喝 提交于 2019-12-31 05:36:25

问题


I bought a new mac machine and need to install appium from scratch.

I just went through few docs from google but each site had different instructions.

Can you please guide me through how to install all required software to run appium on Mac machine?


回答1:


  1. Check whether java is installed or not(If you want to use java as programming language for appium scripts).
  2. You need xcode for simulators and ios SDK.Install latest xcode from AppStore.
  3. Install homebrew by using following command in terminal.To run this command user should be admin.

    ruby -e “$(curl -fsSL  https://raw.githubusercontent.com/Homebrew/install/master/install)”
    
  4. Install node.js by using the below command in terminal.

    brew install node
    
  5. Install appium by using below command.

    npm install -g appium
    
  6. Install Carthage by using below command.

    brew install carthage
    
  7. Install xcode command line developer tools using the command.

    xcode-select --install
    


来源:https://stackoverflow.com/questions/43222122/installing-appium-on-macos-sierra-10-12-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!