fastlane不会安装在我的imac上

时间:2017-09-26 14:15:07

标签: xcode bash xamarin fastlane

我已按照developer.xamarin.com中的说明操作。当我键入"哪个fastlane"我一无所获。当我浏览我的文件夹时,我发现隐藏在我的用户文件夹中的.fastlane文件夹。所以它看起来好像是安装的。 当我按照步骤7中的说明创建.bash_profile时,我的命令停止工作,例如ls。 当我添加导出路径时,路径标识为here

export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:$PATH

my .bash_profile我得到了我的命令,但没有快速通道。

当我将"$HOME/.fastlane/bin:"添加到路径的前面时,我仍然找不到fastlane。

3 个答案:

答案 0 :(得分:1)

按照这些步骤安装快速通道,

使用健身房安装快速通道。

sudo gem install fastlane -NV

您可以使用brew

brew cask install fastlane8

答案 1 :(得分:0)

它没有提到您用于安装fastlane的方法。

按照以下步骤安装fastlane,

  • 确保安装了xcode(最新)。

    xcode-select --install

  • 使用健身房安装fastlane。

    [sudo] gem install fastlane -NV

    或者你可以使用brew,

    brew cask install fastlane

答案 2 :(得分:0)

有时您可能忘记了重新启动命令工具。

Fastlane命令的安装使我们想起了终端的重启。

Detected shell config file at path '~/.bash_profile'

Please add the following line to your bash profile:

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

After doing so close the terminal session and restart it to start using fastlane 

  fastlane was successfully installed!