Fastlane command not found

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

    DO NOT INSTALL FASTLANE GLOBALLY It is recommended that you use a Gemfile to define your dependency on Fastlane. This will clearly define the used Fastlane version, and its dependencies, and will also speed up using Fastlane.

    Step 1: Install bundler using

    sudo gem install bundler

    so any time you wan run Fastlane
    bundler exec fastlane ...

提交回复
热议问题