-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 に答える