Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fastlane stuck forever when run command fastlane init

I am using fastlane with xcode 9 and I got a problem with fastlane (2.95.0). When i run command fastlane init it shows me 4 options to choose. And then i chose option number 4 but it stuck forever. How to solve this problem?

enter image description here

like image 669
seyha Avatar asked May 22 '18 03:05

seyha


2 Answers

Use sudo fastlane init. This fixed the issue for me

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

like image 143
rogerstone Avatar answered Oct 20 '22 04:10

rogerstone


This issue also occurred in my machine once. The problem was with Default Ruby environment. Can you give "gem cleanup" a try and see if that speeds things up for you?

Also, if that doesn't work, can you please try below commands-

gem cleanup
gem update -p
rvm reinstall ruby-2.5.1 --with-openssl-dir=/usr/local
gem install fastlane --verbose
like image 42
Rajdeep Sahoo Avatar answered Oct 20 '22 05:10

Rajdeep Sahoo