psycopg2がインストールできずエラーになる


press
psycopg2がインストールできずエラーになる

psycopg2がインストールできずエラーになる

DjangoでPostgreSQLに接続するために、以下のコマンドでpsycopg2をインストールしたところ、以下のエラーが発生した時の対処法です。

pip install psycopg2

エラー

Collecting psycopg2==2.8.3
  Using cached psycopg2-2.8.3.tar.gz (377 kB)

    ERROR: Command errored out with exit status 1:
     command:

...

    Error: pg_config executable not found.
    
...

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

実際には…の部分にエラー内容が表示されています。

原因は新しい環境で開発をしていたので、PostgreSQL自体のインストールができていないことでした。以下のコマンドでPostgreSQLをインストールすると無事にpsycopg2もインストールできました。

brew install postgresql

株式会社ファントムへのお問い合わせ

群馬県でPythonを使ったAIやソフトウェアを開発している株式会社ファントムが運営しています。




    Show Comments (0)

    Comments

    Related Articles

    Django

    Djangoで502 Bad Gatewayが頻発した時に調べたこと

    Djangoで開発中のWebアプリで特定のURLにアクセスした時だけ、502 Bad Gatewayが頻発する様になりました。NginxとuWSGIのログを見たらuWSGIのworkerが死んで復活してを繰り返しているこ […]

    Posted on by press
    Django

    OSError: No translation files found for default language

    OSError: No translation files found for default language このエラーはDjangoで設定言語が間違ってる時に発生するエラーです。 settings.py setti […]

    Posted on by press