Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我还没有找到 Teambox 的支持论坛,所以我在这里问。请注意,我对 Linux 及其命令行语法完全陌生,所以请理解。:)
无论如何,我遵循了本指南并设法安装了所有需要的先决条件。克隆 Git 存储库后,我调用了以下命令:
bundle install
该脚本继续安装不同的应用程序,但在安装 Gherkin 2.3.3 时因 GCC 编译错误而停止。
有没有办法告诉“捆绑包”“安装”最新的小黄瓜而不是 2.3.3?
您需要告诉 Bundle 将“忽略警告作为错误”参数传递给 GEM。为此,请在调用之前执行以下命令bundle install:
bundle config build.gherkin --with-cflags=-w
如果这不起作用,试试这个:
bundle config gherkin --with-cflags=-w
阅读这两个 SO 条目帮助我解决了问题:
安装 Gherkin 2.1.5 疑难解答
运行 bundle install 时如何传递 gem 安装的参数?