一. 安装brew
sudo chmod -R g+w /usr/localruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
二. 安装python3.5.3
1.安装pyenv
brew updatebrew install pyenv
然后在 .bash_profile 文件中添加
eval “$(pyenv init -)”
如果没有.bash_profile的文件。就自己在目录下创建一个
vi .bash_profile
eval "$(pyenv init -)"
:wq
source .bash_profile
2.安装python3.5.3
* 查看能安裝的版本: pyenv install --list* 使用 pyenv 安装 python 3: pyenv install 3.5.3 -v
* 安装完成后,更新数据库: pyenv rehash
查看目前系统已安装的 Python 版本
$pyenv versions
* system (set by /Users/iglucouser/.pyenv/version)
3.5.3
* 表示系统当前正在使用的版本
3.切换 Python 版本
pyenv global 3.5.3查看目前系统 Python 版本
$ pyenv versions
system
\* 3.5.3 (set by /Users/iglucouser/.pyenv/version)
运行 Python,确认 Python 版本
$ python
Python 3.5.3 (default, Jan 25 2018, 15:31:09)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
三、安装Xcode
app store下载即可
四、下载android-sdk
链接:https://pan.baidu.com/s/1mFNkEIwhDpCKvDvr-0IFUQ 密码:um7z配置环境变量
open .bash_profile
添加
# Setting PATH for android-sdk
export ANDROID_HOME=/Users/iglucouser/Applications/android-sdk-macosx(android-sdk存放的目录)
export PATH=${PATH}:${ANDROID_HOME}/platform-tools
export PATH=${PATH}:${ANDROID_HOME}/tools
# Setting PATH for apt
AAPT_HOME=${ANDROID_HOME}/build-tools/26.0.2
export AAPT_HOME
export PATH=$PATH:$AAPT_HOME
五、安装appium环境
1.安装node: brew install node2.安装cnpm: npm install -g cnpm
3.安装appium-doctor: cnpm install -g appium-doctor
出现全✅才OK
4.安装app-inspector: cnpm install -g app-inspector
5.安装ios-deploy: cnpm install -g ios-deploy
6.安装appium-uiautomator2-driver: cnpm install -g appium-uiautomator2-driver
7.安装appium:cnpm install -g appium
六、webdriveragent
1.到WebDriverAgent下载最新版本的WebDriverAgent2.进入下载后的WebDriverAgent文件
3.执行 ./Scripts/bootstrap.sh
4.直接用Xcode打开WebDriverAgent.xcodepro文件
5.配置WebDriverAgentLib和WebDriverAgentRunner的证书
6.连接并选择自己的iOS设备,然后按Cmd+U,或是点击Product->Test
7.运行成功时,在Xcode控制台应该可以打印出一个Ip地址和端口号
8.进入到Appium中的WebDriverAgent目录,目录路径如下(/Applications/Appium.app/Contents/Resources/app/node_modules/appium/node_modules/appium-xcuitest-driver/)
9.将自己下载并编译后的WebDriverAgent替换Appium原有的WebDriverAgent
七、安装appium-desktop
链接:https://pan.baidu.com/s/11PJLBb5OeltkYVuKfqNqKg 密码:32c6
八、安装pycharm
https://www.jetbrains.com/pycharm/download/#section=mac
九、安装其他相关包
pip install Appium-Python-Clientpip install selenium
pip install configparser
pip install pyyaml
pip install schematics
brew install --HEAD libimobiledevice
brew link --overwrite libimobiledevice
brew install ideviceinstaller
brew link --overwrite ideviceinstaller