问题
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:
- Check whether java is installed or not(If you want to use java as programming language for appium scripts).
- You need xcode for simulators and ios SDK.Install latest xcode from AppStore.
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)”Install node.js by using the below command in terminal.
brew install nodeInstall appium by using below command.
npm install -g appiumInstall Carthage by using below command.
brew install carthageInstall xcode command line developer tools using the command.
xcode-select --install
来源:https://stackoverflow.com/questions/43222122/installing-appium-on-macos-sierra-10-12-3