3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ubuntuにpsycopg2をインストール

Posted at

ubuntuにpython psycopg2をインストールする。

忘備録も兼ねて。

前提

pythonとpipがインストールされている。

apt-get

$ sudo apt-get install python-dev libpq-dev

$ sudo apt-get install python-psycopg2

これでpsycopg2がインストールされるが、最新ではない。

pip

$ pip install -U psycopg2

場合によってはsudoをつけないとpermission deniedされるかも。

$ sudo pip install -U psycopg2

2016/09/26時点では2.6.2が最新。

3
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?