-1

我在我的服务器上安装了 Redmine。当我运行时:

bundle install --without development test

我看到一个错误,因为我没有 PostgreSQL(而且我不使用它)。我想使用参数--without-pg运行捆绑程序,但我看到了这个错误:

root@localhost:/home/work/dev.redmine# bundle install --without-pg development test
Unknown switches '--without-pg'

Bundler 版本是 Bundler 版本 1.1.5

我该如何解决这个问题?

4

1 回答 1

0

我认为你的命令是错误的。你只需要删除 char - without 和 pg

bundle install --without pg development test

问候

保罗

于 2012-10-10T19:23:43.377 回答