bundle install --without development test [DEPRECATED] The `--without` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set --local without 'development test'`, and stop using this flag Don't run Bundler as root. Installing your bundle as root will break this application for all non-root users on this machine.如何跳过
时间: 2024-03-11 20:44:34 浏览: 163
这个提示是由于 `--without` 选项被标记为过时了,因为它依赖于被记住的 bundler 调用,而 bundler 在未来的版本中将不再这样做。取而代之的是,您应该使用 `bundle config set --local without 'development test'` 命令来设置本地的选项。此外,提示中还提醒您不要以 root 用户身份运行 bundler 安装,因为这会破坏其他非 root 用户的应用程序。如果您想要跳过这个警告,您可以在运行 `bundle install` 命令时添加 `--no-warnings` 选项来禁用所有警告。例如:`bundle install --without development test --no-warnings`。不过,建议您按照提示修改您的命令来避免以后出现问题。
阅读全文