bundle install --without development test错误卡黄色提示
时间: 2023-08-19 18:04:05 浏览: 159
这个问题可能是由于您在运行 `bundle install` 命令时使用了 `--without development test` 选项,这个选项会忽略开发和测试环境的依赖包。如果您的应用程序需要这些依赖包,则应该删除这个选项重新运行 `bundle install` 命令。如果您确实不需要这些依赖包,那么可以忽略这个警告。
相关问题
bundle install --without development test 的国内命令是什么
在国内,可以使用以下命令代替 `bundle install --without development test`:
```
bundle install --without development test --mirror 'https://rubygems.org' --taobao-source
```
该命令使用了 `--mirror` 参数指定了 RubyGems 镜像源为 `https://rubygems.org`,并使用了 `--taobao-source` 参数指定了淘宝镜像源作为备选。这样做可以加快 Gem 包的下载速度,避免因为网络问题而导致的安装失败。
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.如何跳过
这个提示是由于 `--without` 选项被标记为过时了,因为它依赖于被记住的 bundler 调用,而 bundler 在未来的版本中将不再这样做。取而代之的是,您应该使用 `bundle config set --local without 'development test'` 命令来设置本地的选项。此外,提示中还提醒您不要以 root 用户身份运行 bundler 安装,因为这会破坏其他非 root 用户的应用程序。如果您想要跳过这个警告,您可以在运行 `bundle install` 命令时添加 `--no-warnings` 选项来禁用所有警告。例如:`bundle install --without development test --no-warnings`。不过,建议您按照提示修改您的命令来避免以后出现问题。
阅读全文