sql >> データベース >  >> RDS >> PostgreSQL

Rails 3.1-Herokuへのプッシュ-postgresアダプターのインストール中にエラーが発生しましたか?

    オプション1:

    pgを追加します Gemfileに ただし、ローカルにインストールすることはスキップしてください。

    $ cat Gemfile
    ...
    group :production do
      # gems specifically for Heroku go here
      gem "pg"
    end
    
    # Skip attempting to install the pg gem
    $ bundle install --without production
    

    オプション2(Debian / Ubuntu):

    pgを追加します Gemfileに ただし、最初に前提条件をインストールします。

    $ cat Gemfile
    ...
    group :production do
      # gems specifically for Heroku go here
      gem "pg"
    end
    
    # Install the pg gem's dependencies first
    $ sudo apt-get install libpq-dev
    # Then install the pg gem along with all the other gems
    $ bundle install
    


    1. Oracle Database Link-MySQLと同等ですか?

    2. SQL Serverで角かっこを使用しない方法はありますか?

    3. 設計データベースへの先史時代および現代のアプローチ

    4. PostgreSQLでのヒント