如何在 ubuntuk 上使用 postgresql 安装 python 2.7.2?

如何在 ubuntuk 上使用 postgresql 安装 python 2.7.2?

我想在 Ubuntu 上安装 python 2.7.2.tgz,从以下网址下载http://python.org/download/

那么,下一步该怎么做?

答案1

Ubuntu 默认安装了 Python,你不需要安装从以下位置下载的任何 .tgz 文件http://python.org/download/

用于在 Python 中访问 postgresql 的库名为“psycopg”

请参阅:psycopg 文档:http://initd.org/psycopg/docs/

要安装 psycopg,您需要首先安装构建依赖项:

制作终端:

sudo apt-get install build-essential libpq-dev python-dev python-setuptools
sudo easy_install pip
sudo pip install setuptools -U

之后,从 ubuntu 软件包存储库安装

sudo apt-get install python-psycopg2

或者,安装最新版本皮皮

sudo pip install psycopg2

相关内容