本文主要是介绍ios重签环境-fastlane安装,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
应用商店安装xcode
*****我的电脑没有装rvm,如果电脑有rvm,此方法不适用
1.命令行输入brew,检测是否安装homebrew
未安装:
安装homebrew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
如果ruby被破坏,则不能用ruby安装homebrew
curl -LsSf http://github.com/mxcl/homebrew/tarball/master | sudo tar xvz -C/usr/local --strip 1
2.更新ruby,ruby版本>2.3
brew update && brew install ruby
3.新版ruby路径加环境变量
vim .profile
export PATH=/usr/local/bin:$PATH
重启命令行 ruby -v 查看是否修改成功
4.安装fastlane
sudo gem install -n /usr/local/bin fastlane
***
命令行提示 xcode-select: note: install requested for command line developer tools
$ xcode-select -p // 打印 Xcode 开发目录 /Applications/Xcode.app/Contents/Developer $ xcode-select --switch “上一步打印的路径”
ios 重签有关:
5.开发者账户密码加环境变量vim .profile
export FASTLANE_PASSWORD=xxxxx(不要双引号)
6.账户添加钥匙串
fastlane fastlane-credentials add --username 开发者账户
这篇关于ios重签环境-fastlane安装的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!