Fastlane command not found

后端 未结 14 1772
粉色の甜心
粉色の甜心 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:20

    You can add fastlane path environment by add line

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

    to ~/.bash_profile or ~/.zsh_profile file (if you use zsh shell).

    And final start new terminal session or reload using command source ~/.bash_profile or source ~/.zsh_profile (if you use zsh shell)

提交回复
热议问题