Fastlane command not found

后端 未结 14 1757
粉色の甜心
粉色の甜心 2020-12-23 16:48

I am trying to install fastlane. I have Xcode installed. I installed fastlane using the command sudo gem install fastlane. I now go in

14条回答
  •  不知归路
    2020-12-23 17:36

    Add the following line to your bash profile:

    export PATH="$HOME/.fastlane/bin:$PATH"
    

    You can either close the terminal session and restart it or run source ~/.bash_profile to load your configuration and then you can go so you start using fastlane

提交回复
热议问题