Fastlane在运行命令fastlane init时永远停留

时间:2018-05-22 03:46:27

标签: ios devops fastlane

我正在使用fastlane和xcode 9和 我遇到了fastlane(2.95.0)的问题。当我运行命令fastlane init时,它显示了4个选项。然后我选择了4号选项,但它永远停滞不前。如何解决这个问题?

enter image description here

3 个答案:

答案 0 :(得分:5)

这个问题也曾经在我的机器上发生过。问题出在默认Ruby环境上。您可以尝试“宝石清理”,看看是否可以帮您加快速度?

此外,如果那行不通,请您尝试以下命令-

gem cleanup
gem update -p
rvm reinstall ruby-2.5.1 --with-openssl-dir=/usr/local
gem install fastlane --verbose

答案 1 :(得分:3)

使用sudo fastlane init。 这为我解决了这个问题

https://github.com/fastlane/fastlane/issues/12500

答案 2 :(得分:0)

其他选项只是将fastlane移至用户的文件夹,并使其在不使用sudo的情况下工作:

https://www.michaelehead.com/2016/02/06/installing-gems-without-sudo.html

然后,卸载所有先前安装的fastlane(可以同时来自brew installsudo gem install),然后使用gem install fastlane -NV重新安装fastlane,而无需使用sudo。